X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractVariable.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractVariable.java deleted file mode 100644 index 9a91e22..0000000 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractVariable.java +++ /dev/null @@ -1,17 +0,0 @@ -package net.sourceforge.phpdt.internal.compiler.ast; - -/** - * The variable superclass. - * @author Matthieu Casanova - */ -public abstract class AbstractVariable extends Expression { - protected AbstractVariable(final int sourceStart, final int sourceEnd) { - super(sourceStart, sourceEnd); - } - - /** - * This method will return the name of the variable. - * @return a string containing the name of the variable. - */ - public abstract String getName(); -}