Eliminated unused classes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / Else.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Else.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Else.java
deleted file mode 100644 (file)
index d0e1ea6..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-package net.sourceforge.phpdt.internal.compiler.ast;
-
-/**
- * @author Matthieu Casanova
- */
-public class Else extends Statement {
-
-  public Statement[] statements;
-
-  public Else(Statement[] statements, int sourceStart, int sourceEnd) {
-    super(sourceStart, sourceEnd);
-    this.statements = statements;
-  }
-
-  public Else(Statement statement, int sourceStart, int sourceEnd) {
-    super(sourceStart, sourceEnd);
-    this.statements = new Statement[1];
-    this.statements[0] = statement;
-  }
-
-  /**
-   * Return the object into String.
-   * @param tab how many tabs (not used here
-   * @return a String
-   */
-  public String toString(int tab) {
-    final StringBuffer buff = new StringBuffer(tabString(tab));
-    buff.append("else \n");
-    for (int i = 0; i < statements.length; i++) {
-      Statement statement = statements[i];
-      buff.append(statement.toString(tab + 1)).append('\n');
-    }
-    return buff.toString();
-  }
-}