remove extraneous debug print statement
[sbp.git] / src / edu / berkeley / sbp / meta / GrammarBuilder.java
index e6e06ad..b3f4941 100644 (file)
@@ -437,7 +437,6 @@ public class GrammarBuilder {
             return ret;
         }
         public Element build(Context cx, NonTerminalNode cnt, boolean dropall, Object repeatTag) {
-            if (!many) System.out.println("tag is: " + repeatTag);
             return (!max)
                 ? Repeat.repeat(e.build(cx, null, dropall), zero, many, sep==null ? null : sep.build(cx, null, dropall), repeatTag)
                 : sep==null