Eliminated unused classes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / FalseLiteral.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/FalseLiteral.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/FalseLiteral.java
deleted file mode 100644 (file)
index 161eb67..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package net.sourceforge.phpdt.internal.compiler.ast;
-
-import test.Token;
-
-/**
- * @author Matthieu Casanova
- */
-public final class FalseLiteral extends MagicLiteral {
-
-  public FalseLiteral(final Token token) {
-    super(token.sourceStart, token.sourceEnd);
-  }
-
-  /**
-   * Return the expression as String.
-   * @return the expression
-   */
-  public String toStringExpression() {
-    return "false";//$NON-NLS-1$
-  }
-
-  public String toString() {
-    return "false";//$NON-NLS-1$
-  }
-}
\ No newline at end of file