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 8d63fb8..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-package net.sourceforge.phpdt.internal.compiler.ast;
-
-/**
- * @author Matthieu Casanova
- */
-public class FalseLiteral extends MagicLiteral {
-
-  public static final char[] source = {'f', 'a', 'l', 's', 'e'};
-
-  public FalseLiteral(int sourceStart, int sourceEnd) {
-    super(sourceStart, sourceEnd);
-  }
-
-  /**
-   * Return the expression as String.
-   * @return the expression
-   */
-  public String toStringExpression() {
-    return "false";
-  }
-
-  public char[] source() {
-    return source;
-  }
-
-  public String toString() {
-    return "false";//$NON-NLS-1$
-  }
-}
\ No newline at end of file