remove stale logging code from Cartesian
[sbp.git] / src / edu / berkeley / sbp / misc / Cartesian.java
index 5f5b739..c49b7df 100644 (file)
@@ -26,14 +26,6 @@ public class Cartesian {
            int scalar = location.getScalar();
             Token t = _next();
             if (t==null) return null;
-            String s = "  line "+line+", col " + col;
-            while(s.length() < 20) s += " ";
-            //s += "[ambiguity level: " + (numstates-1) + "] [resets: " + resets + "] [waits: " + waits + "]";
-            long now = System.currentTimeMillis();
-            if (now-then > 10) {
-                then = now;
-                System.err.print(s + "                                \r");
-            }
             if (isCR()) { 
                 line++;
                 col = 1;