< prev index next >

src/java.base/share/classes/java/nio/MappedByteBuffer.java

Print this page

        

@@ -211,71 +211,64 @@
 
     // -- Covariant return type overrides
 
     /**
      * {@inheritDoc}
-     * @since 9
      */
     @Override
     public final MappedByteBuffer position(int newPosition) {
         super.position(newPosition);
         return this;
     }
 
     /**
      * {@inheritDoc}
-     * @since 9
      */
     @Override
     public final MappedByteBuffer limit(int newLimit) {
         super.limit(newLimit);
         return this;
     }
 
     /**
      * {@inheritDoc}
-     * @since 9
      */
     @Override
     public final MappedByteBuffer mark() {
         super.mark();
         return this;
     }
 
     /**
      * {@inheritDoc}
-     * @since 9
      */
     @Override
     public final MappedByteBuffer reset() {
         super.reset();
         return this;
     }
 
     /**
      * {@inheritDoc}
-     * @since 9
      */
     @Override
     public final MappedByteBuffer clear() {
         super.clear();
         return this;
     }
 
     /**
      * {@inheritDoc}
-     * @since 9
      */
     @Override
     public final MappedByteBuffer flip() {
         super.flip();
         return this;
     }
 
     /**
      * {@inheritDoc}
-     * @since 9
      */
     @Override
     public final MappedByteBuffer rewind() {
         super.rewind();
         return this;
< prev index next >