You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@locus.apache.org on 2000/11/30 17:30:31 UTC

cvs commit: jakarta-ant/src/main/org/apache/tools/mail SmtpResponseReader.java

bodewig     00/11/30 08:30:31

  Modified:    src/main/org/apache/tools/mail SmtpResponseReader.java
  Log:
  Better remove debug statements before you commit.
  
  Revision  Changes    Path
  1.2       +0 -2      jakarta-ant/src/main/org/apache/tools/mail/SmtpResponseReader.java
  
  Index: SmtpResponseReader.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/mail/SmtpResponseReader.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SmtpResponseReader.java	2000/11/30 16:27:14	1.1
  +++ SmtpResponseReader.java	2000/11/30 16:30:30	1.2
  @@ -89,14 +89,12 @@
           }
           
           while (line != null) {
  -            System.err.println(line);
               append(line);
               if (!hasMoreLines(line)) {
                   break;
               }
               line = reader.readLine();
           }
  -        System.err.println("\""+result.toString().trim()+"\"");
           return result.toString().trim();
       }