From e07fbf49f582e198cc5f09fe73244eeed167e278 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Sun, 16 Jan 2011 21:34:21 +0000 Subject: [PATCH] Cosmetics. --- .../org/eclipse/cdt/internal/core/dom/parser/ASTInternal.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ASTInternal.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ASTInternal.java index a368a052d87..e4cfb2ef56d 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ASTInternal.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ASTInternal.java @@ -30,7 +30,7 @@ import org.eclipse.core.runtime.CoreException; public class ASTInternal { public static IASTNode[] getDeclarationsOfBinding(IBinding binding) { if (binding instanceof ICPPInternalBinding) { - return ((ICPPInternalBinding)binding).getDeclarations(); + return ((ICPPInternalBinding) binding).getDeclarations(); } assert false; return IASTNode.EMPTY_NODE_ARRAY; @@ -57,7 +57,7 @@ public class ASTInternal { public static boolean isStatic(IFunction func, boolean resolveAll) { if (func instanceof ICPPInternalFunction) { - return ((ICPPInternalFunction)func).isStatic(resolveAll); + return ((ICPPInternalFunction) func).isStatic(resolveAll); } if (func instanceof ICInternalFunction) { return ((ICInternalFunction) func).isStatic(resolveAll);