Browse Source

Better remove debug statements before you commit.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268280 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 24 years ago
parent
commit
06f1d441ca
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      src/main/org/apache/tools/mail/SmtpResponseReader.java

+ 0
- 2
src/main/org/apache/tools/mail/SmtpResponseReader.java View File

@@ -89,14 +89,12 @@ public class SmtpResponseReader {
}
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();
}



Loading…
Cancel
Save