Browse Source

r985632 : actually it is breaking unit test, reverting

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@985640 13f79535-47bb-0310-9956-ffa450edef68
master
Nicolas Lalevee 15 years ago
parent
commit
51971d6330
2 changed files with 1 additions and 5 deletions
  1. +0
    -4
      WHATSNEW
  2. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/PumpStreamHandler.java

+ 0
- 4
WHATSNEW View File

@@ -119,10 +119,6 @@ Fixed bugs:
<zipfileset>s that used the prefix or fullpath attributes.
Bugzilla Report 49605.

* If forked, after finished <java> was still reading the input stream
for a bunch of characters, then stealing them from a following <input>.
Bugzilla Report 49119.

Other changes:
--------------



+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/PumpStreamHandler.java View File

@@ -257,7 +257,7 @@ public class PumpStreamHandler implements ExecuteStreamHandler {
/*protected*/ StreamPumper createInputPump(InputStream is, OutputStream os,
boolean closeWhenExhausted) {
StreamPumper pumper = new StreamPumper(is, os, closeWhenExhausted,
true);
false);
pumper.setAutoflush(true);
return pumper;
}


Loading…
Cancel
Save