Revert changes to ApexRootNode
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user