X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/TrueLiteral.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/TrueLiteral.java deleted file mode 100644 index bb63a58..0000000 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/TrueLiteral.java +++ /dev/null @@ -1,26 +0,0 @@ -package net.sourceforge.phpdt.internal.compiler.ast; - -import test.Token; - -/** - * the true literal. - * @author Matthieu Casanova - */ -public final class TrueLiteral extends MagicLiteral { - - public TrueLiteral(final Token token) { - super(token.sourceStart, token.sourceEnd); - } - - /** - * Return the expression as String. - * @return the expression - */ - public String toStringExpression() { - return "true";//$NON-NLS-1$ - } - - public String toString() { - return "true";//$NON-NLS-1$ - } -}