don't clreol when displaying just the spinner
authoradam <adam@megacz.com>
Mon, 26 Mar 2007 07:12:56 +0000 (03:12 -0400)
committeradam <adam@megacz.com>
Mon, 26 Mar 2007 07:12:56 +0000 (03:12 -0400)
darcs-hash:20070326071256-5007d-199d0af2dba46b21255f350a4d5c70d3a04244a4.gz

src/edu/berkeley/sbp/Parser.java

index b4a60b9..0b5f7c1 100644 (file)
@@ -29,7 +29,7 @@ public abstract class Parser<Token, NodeType> {
             long now = System.currentTimeMillis();
             if (now-last < 70) return;
             last = now;
-            System.err.print("\r  " + spin[spinpos++ % (spin.length)]+ANSI.clreol()+"\r");
+            System.err.print("\r  " + spin[spinpos++ % (spin.length)]+"\r");
         }
     }