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 785fa1a  Javadoc.
785fa1a is described below

commit 785fa1aacb908d6c5d621ad63e54f4130029ebaa
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Aug 8 08:56:30 2019 -0400

    Javadoc.
---
 src/main/java/org/apache/commons/io/output/ProxyWriter.java | 6 ++++++
 1 file changed, 6 insertions(+)

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 7262b72..469c401 100644
--- a/src/main/java/org/apache/commons/io/output/ProxyWriter.java
+++ b/src/main/java/org/apache/commons/io/output/ProxyWriter.java
@@ -233,12 +233,14 @@ public class ProxyWriter extends FilterWriter {
      * Subclasses can override this method to add common pre-processing
      * functionality without having to override all the write methods.
      * The default implementation does nothing.
+     * </p>
      *
      * @since 2.0
      * @param n number of chars to be written
      * @throws IOException if the pre-processing fails
      */
     protected void beforeWrite(final int n) throws IOException {
+        // noop
     }
 
     /**
@@ -250,12 +252,14 @@ public class ProxyWriter extends FilterWriter {
      * Subclasses can override this method to add common post-processing
      * functionality without having to override all the write methods.
      * The default implementation does nothing.
+     * </p>
      *
      * @since 2.0
      * @param n number of chars written
      * @throws IOException if the post-processing fails
      */
     protected void afterWrite(final int n) throws IOException {
+        // noop
     }
 
     /**
@@ -263,6 +267,8 @@ public class ProxyWriter extends FilterWriter {
      * <p>
      * This method provides a point to implement custom exception
      * handling. The default behaviour is to re-throw the exception.
+     * </p>
+     *
      * @param e The IOException thrown
      * @throws IOException if an I/O error occurs
      * @since 2.0

Reply via email to