From ca69e0b6e9f8cb83eb71e2f60349640aba558354 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Fri, 14 Oct 2011 14:10:23 -0700 Subject: [PATCH] Cosmetics. --- .../org/eclipse/cdt/internal/core/pdom/dom/PDOMFile.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/PDOMFile.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/PDOMFile.java index 2d03e026b0a..e7ecd9a9039 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/PDOMFile.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/PDOMFile.java @@ -222,7 +222,7 @@ public class PDOMFile implements IIndexFragmentFile { // Detach the includes source.setFirstIncludedBy(null); // Adjust the includes - for (PDOMInclude i=include; i != null; i= i.getNextInIncludedBy()) { + for (PDOMInclude i= include; i != null; i= i.getNextInIncludedBy()) { i.setIncludes(this); } // Append the includes @@ -230,7 +230,7 @@ public class PDOMFile implements IIndexFragmentFile { if (last == null) { setFirstIncludedBy(include); } else { - for (PDOMInclude i=last; i != null; i= i.getNextInIncludedBy()) { + for (PDOMInclude i= last; i != null; i= i.getNextInIncludedBy()) { last= i; } last.setNextInIncludedBy(include);