checkpoint
[sbp.git] / src / edu / berkeley / sbp / chr / CharParser.java
index 9bdadbc..9e9a01a 100644 (file)
@@ -19,7 +19,7 @@ public class CharParser extends Parser<Character,String> {
 
     public Forest<String> shiftToken(Character ct, Location newloc) {
         if (oldloc==null) oldloc = newloc;
-        Forest<String> ret = Forest.create(oldloc.createRegion(newloc), ct.toString(), null, false);
+        Forest<String> ret = Forest.create(oldloc.createRegion(newloc), ct.toString(), null);
         oldloc = newloc;
         return ret;
     }