This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push:
new 913ab11 Javadoc.
913ab11 is described below
commit 913ab1131aebdd5a4d1c458c1441f368c1590d06
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Aug 9 08:18:13 2019 -0400
Javadoc.
---
src/main/java/org/apache/commons/io/output/TeeOutputStream.java | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/io/output/TeeOutputStream.java
b/src/main/java/org/apache/commons/io/output/TeeOutputStream.java
index 409c052..673de9c 100644
--- a/src/main/java/org/apache/commons/io/output/TeeOutputStream.java
+++ b/src/main/java/org/apache/commons/io/output/TeeOutputStream.java
@@ -20,10 +20,8 @@ import java.io.IOException;
import java.io.OutputStream;
/**
- * Classic splitter of OutputStream. Named after the unix 'tee'
- * command. It allows a stream to be branched off so there
+ * Classic splitter of OutputStream. Named after the Unix 'tee' command. It
allows a stream to be branched off so there
* are now two streams.
- *
*/
public class TeeOutputStream extends ProxyOutputStream {