From 3992f87dc47e8d951401e849df0309a74a37f632 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Mon, 28 Feb 2011 02:17:30 +0000 Subject: [PATCH] Cosmetics. --- .../parser/org/eclipse/cdt/internal/core/index/CIndex.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/CIndex.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/CIndex.java index bab6a074569..cbc670371ff 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/CIndex.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/index/CIndex.java @@ -82,7 +82,7 @@ public class CIndex implements IIndex { } else { for (int i = 0; i < fPrimaryFragmentCount; i++) { IIndexFragmentBinding binding= fFragments[i].findBinding((IASTName) name); - if (binding!=null) { + if (binding != null) { return getCompositesFactory(binding.getLinkage().getLinkageID()).getCompositeBinding(binding); } } @@ -207,7 +207,7 @@ public class CIndex implements IIndex { public IIndexFile getFile(int linkageID, IIndexFileLocation location) throws CoreException { for (int i = 0; i < fPrimaryFragmentCount; i++) { IIndexFragmentFile candidate= fFragments[i].getFile(linkageID, location); - if (candidate!=null && candidate.hasContent()) { + if (candidate != null && candidate.hasContent()) { return candidate; } }