Revert changes to ApexRootNode

This commit is contained in:
Jeff Hube
2018-08-29 12:28:01 -04:00
parent e86166ee62
commit 86dc44de3e

View File

@ -10,8 +10,6 @@ import net.sourceforge.pmd.lang.ast.SourceCodePositioner;
import apex.jorje.semantic.ast.AstNode;
public abstract class ApexRootNode<T extends AstNode> extends AbstractApexNode<T> implements RootNode {
private String source;
public ApexRootNode(T node) {
super(node);
}
@ -23,13 +21,4 @@ public abstract class ApexRootNode<T extends AstNode> extends AbstractApexNode<T
this.endLine = positioner.getLastLine();
this.endColumn = positioner.getLastLineColumn();
}
@Override
protected void handleSourceCode(String source) {
this.source = source;
}
public String getSource() {
return source;
}
}