forked from jasder/antlr
fix cut/paste error
This commit is contained in:
parent
600c4bbd91
commit
528e9c7b86
|
@ -20,5 +20,5 @@ public class ParseTreeProperty<V> {
|
||||||
|
|
||||||
public V get(ParseTree node) { return annotations.get(node); }
|
public V get(ParseTree node) { return annotations.get(node); }
|
||||||
public void put(ParseTree node, V value) { annotations.put(node, value); }
|
public void put(ParseTree node, V value) { annotations.put(node, value); }
|
||||||
public V removeFrom(ParseTree node) { return annotations.get(node); }
|
public V removeFrom(ParseTree node) { return annotations.remove(node); }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue