diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/ASTHolderTUInfo.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/ASTHolderTUInfo.java index e57addba0b9..a19cdb4b371 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/ASTHolderTUInfo.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/ASTHolderTUInfo.java @@ -8,13 +8,11 @@ * Contributors: * Anton Leherbauer (Wind River Systems) - initial API and implementation *******************************************************************************/ - package org.eclipse.cdt.internal.core.model; import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit; public class ASTHolderTUInfo extends TranslationUnitInfo { - public IASTTranslationUnit fAST; /** @@ -23,5 +21,4 @@ public class ASTHolderTUInfo extends TranslationUnitInfo { public ASTHolderTUInfo(TranslationUnit translationUnit) { super(translationUnit); } - } \ No newline at end of file diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/TranslationUnitInfo.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/TranslationUnitInfo.java index 485984ee7cf..04b369c823d 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/TranslationUnitInfo.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/TranslationUnitInfo.java @@ -8,7 +8,6 @@ * Contributors: * QNX Software Systems - Initial API and implementation *******************************************************************************/ - package org.eclipse.cdt.internal.core.model; import org.eclipse.cdt.core.model.ISourceRange; @@ -18,14 +17,13 @@ import org.eclipse.core.runtime.IPath; * The Element Info of a Translation Unit. */ class TranslationUnitInfo extends OpenableInfo { - /** * Timestamp of original resource at the time this element * was opened or last updated. */ protected long fTimestamp; - protected TranslationUnitInfo (CElement element) { + protected TranslationUnitInfo(CElement element) { super(element); }