summaryrefslogtreecommitdiff
path: root/src/main/org/apache/tools/ant/util/TeeOutputStream.java
Commit message (Collapse)AuthorAgeFilesLines
* updated reference to license from http to https usingjkf2019-05-251-1/+1
| | | | find . -type f -exec sed -i "s/http:\/\/www.apache.org\/licenses\/LICENSE-2.0/https:\/\/www.apache.org\/licenses\/LICENSE-2.0/" {} \;
* java 5-8java8Matt Benson2017-04-131-1/+5
|
* organize importsJan Matèrne2014-07-031-1/+1
|
* copy2license.plStefan Bodewig2006-09-011-5/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@439418 13f79535-47bb-0310-9956-ffa450edef68
* javadocPeter Reilly2005-01-211-3/+36
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277425 13f79535-47bb-0310-9956-ffa450edef68
* remove authors from filesPeter Reilly2004-03-091-1/+0
| | | | | | | | PR: 27177 Obtained from: J.M. (Martijn) Kruithof git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276208 13f79535-47bb-0310-9956-ffa450edef68
* Copyright owner is The Apache Software FoundationAntoine Levy-Lambert2004-02-091-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276065 13f79535-47bb-0310-9956-ffa450edef68
* Remove trailing spaces in all java filesAntoine Levy-Lambert2004-02-041-2/+2
| | | | | | | in order to make checkstyle happy git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276017 13f79535-47bb-0310-9956-ffa450edef68
* Switch to Apache Software License 2.0Antoine Levy-Lambert2004-02-031-49/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276010 13f79535-47bb-0310-9956-ffa450edef68
* styleConor MacNeill2003-07-191-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274858 13f79535-47bb-0310-9956-ffa450edef68
* Remove Jakarta Project from licenseStefan Bodewig2003-02-101-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274040 13f79535-47bb-0310-9956-ffa450edef68
* Allow <exec>'s error and output streams to be redirected independentlyConor MacNeill2003-02-061-0/+99
This is primarily to address bug 7330 but it includes a few other changes. You can now use both output and outputproperty. While it was not documented, previously, these used to be mutually exclusive. A simple TeeOutptuStream is used to write the value to both a property and a file, if required. The LogStreamHandler is no longer used by Exec. The main thing it did over the PumpStreamHandler was to close the output streams when the stream handler's stop method was called. This needed to be done in the PumpStreamHandler in any case or the output file would be left open. The PumpStreamHandler can now close its streams on stop() although the default is still to leave them open There are new attributes "error" and "errorProperty" which if present separate output and error streams. If not present the current behaviour is unchanged. PR: 7330 git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274003 13f79535-47bb-0310-9956-ffa450edef68