This commit is contained in:
Clément Fournier
2018-01-25 03:06:54 +01:00
parent 6a3b332aee
commit 27ccd140ef
4 changed files with 0 additions and 4 deletions

View File

@ -135,7 +135,6 @@ public abstract class AbstractApexNode<T extends AstNode> extends AbstractNode i
@Override
public final String getXPathNodeName() {
new ASTMapEntryNode(null).toString();
return this.getClass().getSimpleName().replaceFirst("^AST", "");
}

View File

@ -26,7 +26,6 @@ public class MatchesFunctionTest {
super(1);
}
@Deprecated
@Override
public String toString() {
return "MyNode";

View File

@ -9,7 +9,6 @@ public class DummyNode extends AbstractNode {
super(id);
}
@Deprecated
@Override
public String toString() {
return "dummyNode";

View File

@ -23,7 +23,6 @@ public abstract class Comment extends AbstractNode {
}
}
@Deprecated
public String toString() {
return getImage();
}