Eliminated unused classes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / TrueLiteral.java
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 (file)
index bb63a58..0000000
+++ /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$
-  }
-}