Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorSergey Prigogin2011-10-03 19:24:16 +0000
committerSergey Prigogin2011-10-03 19:24:16 +0000
commitb87e568b78892d050212f74b99fd8ca34d06d301 (patch)
tree6d513d139d3958a15d5ce0f3b59d3f1de2d67c2d /core
parent9fec7d91edd388089fe9d06383c612bb747766b2 (diff)
downloadorg.eclipse.cdt-b87e568b78892d050212f74b99fd8ca34d06d301.tar.gz
org.eclipse.cdt-b87e568b78892d050212f74b99fd8ca34d06d301.tar.xz
org.eclipse.cdt-b87e568b78892d050212f74b99fd8ca34d06d301.zip
Comment adjustment.
Diffstat (limited to 'core')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/PDOMFile.java2
1 files changed, 1 insertions, 1 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 9ffa8d035c1..21f01d57692 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
@@ -63,7 +63,7 @@ public class PDOMFile implements IIndexFragmentFile {
private final PDOMLinkage fLinkage;
private final long record;
private IIndexFileLocation location; // No need to make volatile, all fields of IndexFileLocation are final.
- private ISignificantMacros sigMacros; // No need to make volatile, all fields of FileContentsKey are either final or volatile.
+ private ISignificantMacros sigMacros; // No need to make volatile, all fields of SignificantMacros are either final or atomically updated.
private static final int FIRST_NAME = 0;
private static final int FIRST_INCLUDE = FIRST_NAME + Database.PTR_SIZE;

Back to the top