checkpoint harmony
[sbp.git] / src / edu / berkeley / sbp / misc / CharToken.java
index 87be340..2042145 100644 (file)
@@ -15,7 +15,7 @@ public class CharToken implements Token, IntegerMappable {
 
     public static class CharToStringParser extends Parser<CharToken,String> {
         public CharToStringParser(Union u) { super(u, new IntegerTopology<CharToken>()); }
-        public Forest<String> shiftedToken(CharToken ct, Token.Location loc) {
+        public Forest<String> shiftToken(CharToken ct, Token.Location loc) {
             return Forest.create(loc, ct.result(), null, false, false);
         }
     }