X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2Fchr%2FCharParser.java;h=bce5b6033841fe4a9b6b974ca8edf9eb5c0d9cb0;hb=aaa5d101e054dc548e7ef7831b1fcb7913a4d4d4;hp=0a050118c407caf3a5e7fa44192cd0c9ac96b298;hpb=c8a17fdd2e149fe5feecd96c71b7f2cab286ab96;p=sbp.git diff --git a/src/edu/berkeley/sbp/chr/CharParser.java b/src/edu/berkeley/sbp/chr/CharParser.java index 0a05011..bce5b60 100644 --- a/src/edu/berkeley/sbp/chr/CharParser.java +++ b/src/edu/berkeley/sbp/chr/CharParser.java @@ -16,7 +16,7 @@ public class CharParser extends Parser { public CharParser(Union u) { super(u, new CharTopology()); } public Forest shiftToken(Location oldloc, Character ct, Location newloc) { - return Forest.create(new Input.Region(oldloc, newloc), ct.toString(), null, false, false, null); + return Forest.create(new Input.Region(oldloc, newloc), ct.toString(), null, false, null); } }