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/29 14:25:38 UTC

svn commit: r1606495 - /commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/ByteSequence.java

Author: ggregory
Date: Sun Jun 29 12:25:37 2014
New Revision: 1606495

URL: http://svn.apache.org/r1606495
Log:
Better comment.

Modified:
    commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/ByteSequence.java

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/ByteSequence.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/ByteSequence.java?rev=1606495&r1=1606494&r2=1606495&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/ByteSequence.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/ByteSequence.java Sun Jun 29 12:25:37 2014
@@ -54,11 +54,10 @@ public final class ByteSequence extends 
             super(bytes);
         }
 
-
         final int getPosition() {
+            // pos is protected in ByteArrayInputStream
             return pos;
-        } // is protected in ByteArrayInputStream
-
+        }
 
         final void unreadByte() {
             if (pos > 0) {