checkpoint
[sbp.git] / src / edu / berkeley / sbp / misc / CartesianInput.java
index 4930173..928b236 100644 (file)
@@ -39,13 +39,6 @@ public abstract class CartesianInput<Tok> implements Input<Tok> {
         return t;
     }
 
-    public static class Location implements Input.Location {
-        public final int line;
-        public final int col;
-        public String toString()            { return line + ":" + col; }
-        public Location(int line, int col)  { this.line = line; this.col = col; }
-    }
-
     private class LocWrap implements Input.Location {
         public final int line;
         public final int col;