1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-04-11 22:49:23 +00:00
parent 2c7f55ae19
commit 016a7e2e64
2 changed files with 1 additions and 6 deletions

View file

@ -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);
}
}

View file

@ -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);
}