Eliminated unused classes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / Statement.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Statement.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Statement.java
deleted file mode 100644 (file)
index ff647a4..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package net.sourceforge.phpdt.internal.compiler.ast;
-
-
-/**
- * A Statement.
- * @author Matthieu Casanova
- */
-public abstract class Statement extends AstNode {
-
-  /**
-   * Create a node giving starting and ending offset.
-   * @param sourceStart starting offset
-   * @param sourceEnd ending offset
-   */
-  protected Statement(final int sourceStart,
-                   final int sourceEnd) {
-    super(sourceStart, sourceEnd);
-  }
-
-  /**
-   * Tell if the block is empty.
-   * @return a statement is not empty by default
-   */
-  public boolean isEmptyBlock() {
-    return false;
-  }
-}