X-Git-Url: http://git.phpeclipse.com 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 index a6afa57..0000000 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/Statement.java +++ /dev/null @@ -1,22 +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 - */ - public Statement(int sourceStart, int sourceEnd) { - super(sourceStart, sourceEnd); - } - - public boolean isEmptyBlock() { - return false; - } -}