bug fix...gcloads was used twice for different things with different types...
[IRC.git] / Robust / src / Lex / Operator.java
index e1b26daf517e4ebc0c40924af2871085a4434058..7173b3310f666b169c9a4459246b24ffb27dc7ac 100644 (file)
@@ -6,13 +6,17 @@ import Parse.Sym;
 
 class Operator extends Token {
   String which;
-  Operator(String which) { this.which = which; }
+  Operator(String which) {
+    this.which = which;
+  }
 
-  public String toString() { return "Operator <"+which+">"; }
+  public String toString() {
+    return "Operator <"+which+">";
+  }
 
-  Symbol token() { 
+  Symbol token() {
     Integer i = (Integer) op_table.get(which);
-    return new Symbol(i.intValue()); 
+    return new Symbol(i.intValue());
   }
 
   static private final Hashtable op_table = new Hashtable();