tentative checkpoint ROLL THIS BACK BUT INCLUDES CRUCIAL FIX
[sbp.git] / src / edu / berkeley / sbp / chr / CharRange.java
index 123e6ca..8952536 100644 (file)
@@ -12,9 +12,9 @@ public class CharRange extends Atom<Character> {
 
     public CharRange(char a) { this(a,a); }
     public CharRange(char a, char b) { this(new CharTopology(a, b)); }
-    public CharRange(Topology<Character> t) { this.t = t; }
+    public CharRange(CharTopology t) { this.t = t; }
 
-    private Topology<Character> t;
+    private CharTopology t;
     public  Topology<Character> top() { return t; }
 
     public static final char left       = (char)9998;