add in query_.. parameters to the delete request url so that we come back to the...
[mir.git] / source / mir / util / SimpleParser.java
index 8c4a5cb..f8160f1 100755 (executable)
@@ -43,8 +43,6 @@ public class SimpleParser {
   public SimpleParser(String aData) {
     data=aData;
     position=0;
-
-    System.out.println("Will parse: "+aData);
   }
 
   public boolean parses(RE aRegularExpression) throws SimpleParserExc {
@@ -107,8 +105,6 @@ public class SimpleParser {
 
   public String parse(String anExpression, String aMessage) throws SimpleParserExc, SimpleParserFailure {
     try {
-      System.out.println("Expression: "+anExpression);
-
       return parse(new RE(anExpression), aMessage);
     }
     catch (SimpleParserExc e) {