You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/04/03 00:53:10 UTC

svn commit: r1308607 - /commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java

Author: sebb
Date: Mon Apr  2 22:53:10 2012
New Revision: 1308607

URL: http://svn.apache.org/viewvc?rev=1308607&view=rev
Log:
Forgot @since markers

Modified:
    commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java

Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java?rev=1308607&r1=1308606&r2=1308607&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java (original)
+++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java Mon Apr  2 22:53:10 2012
@@ -64,6 +64,7 @@ public class BaseNCodecInputStream exten
      * <p>The {@link #mark} method of {@link BaseNCodecInputStream} does nothing.</p>
      *
      * @param readLimit the maximum limit of bytes that can be read before the mark position becomes invalid.
+     *  @since 1.7
      */
     @Override
     public synchronized void mark(int readLimit) {
@@ -167,6 +168,7 @@ public class BaseNCodecInputStream exten
      * <p>The {@link #reset} method of {@link BaseNCodecInputStream} does nothing except throw an {@link IOException}.</p>
      *
      * @throws IOException if this method is invoked
+     * @since 1.7
      */
     @Override
     public synchronized void reset() throws IOException {