You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2014/06/18 17:46:07 UTC

svn commit: r1603493 - /commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ProxyInputStream.java

Author: ggregory
Date: Wed Jun 18 15:46:07 2014
New Revision: 1603493

URL: http://svn.apache.org/r1603493
Log:
Comment empty block.

Modified:
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ProxyInputStream.java

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ProxyInputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ProxyInputStream.java?rev=1603493&r1=1603492&r2=1603493&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ProxyInputStream.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ProxyInputStream.java Wed Jun 18 15:46:07 2014
@@ -200,6 +200,7 @@ public abstract class ProxyInputStream e
      * @throws IOException if the pre-processing fails
      */
     protected void beforeRead(final int n) throws IOException {
+        // no-op
     }
 
     /**
@@ -220,6 +221,7 @@ public abstract class ProxyInputStream e
      * @throws IOException if the post-processing fails
      */
     protected void afterRead(final int n) throws IOException {
+        // no-op
     }
 
     /**