fix cut/paste error

This commit is contained in:
Terence Parr 2012-02-25 16:09:29 -08:00
parent 600c4bbd91
commit 528e9c7b86
1 changed files with 1 additions and 1 deletions

View File

@ -20,5 +20,5 @@ public class ParseTreeProperty<V> {
public V get(ParseTree node) { return annotations.get(node); }
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); }
}