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 30bbf38 Javadoc.
30bbf38 is described below
commit 30bbf38103f4d18083e3fc7768e14b663dce1ec5
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Aug 9 09:45:17 2019 -0400
Javadoc.
---
src/main/java/org/apache/commons/io/output/ProxyWriter.java | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/src/main/java/org/apache/commons/io/output/ProxyWriter.java
b/src/main/java/org/apache/commons/io/output/ProxyWriter.java
index 6acb942..b71e670 100644
--- a/src/main/java/org/apache/commons/io/output/ProxyWriter.java
+++ b/src/main/java/org/apache/commons/io/output/ProxyWriter.java
@@ -23,12 +23,10 @@ import java.io.Writer;
import org.apache.commons.io.IOUtils;
/**
- * A Proxy stream which acts as expected, that is it passes the method
- * calls on to the proxied stream and doesn't change which methods are
- * being called. It is an alternative base class to FilterWriter
- * to increase reusability, because FilterWriter changes the
- * methods being called, such as write(char[]) to write(char[], int, int)
- * and write(String) to write(String, int, int).
+ * A Proxy stream which acts as expected, that is it passes the method calls
on to the proxied stream and doesn't
+ * change which methods are being called. It is an alternative base class to
FilterWriter to increase reusability,
+ * because FilterWriter changes the methods being called, such as {@code
write(char[]) to write(char[], int, int)}
+ * and {@code write(String) to write(String, int, int)}.
*/
public class ProxyWriter extends FilterWriter {