jdk/src/java.base/share/classes/java/io/InputStream.java
changeset 35302 e4d2275861c3
parent 30962 3d58028e8e7f
child 39121 a1a92fce338a
--- a/jdk/src/java.base/share/classes/java/io/InputStream.java	Wed Jan 20 09:21:57 2016 -0800
+++ b/jdk/src/java.base/share/classes/java/io/InputStream.java	Wed Jan 20 11:02:36 2016 -0800
@@ -228,7 +228,7 @@
      *         allocated. For example, if an array larger than {@code 2GB} would
      *         be required to store the bytes.
      *
-     * @since 1.9
+     * @since 9
      */
     public byte[] readAllBytes() throws IOException {
         byte[] buf = new byte[DEFAULT_BUFFER_SIZE];
@@ -298,7 +298,7 @@
      * @throws IndexOutOfBoundsException If {@code off} is negative, {@code len}
      *         is negative, or {@code len} is greater than {@code b.length - off}
      *
-     * @since 1.9
+     * @since 9
      */
     public int readNBytes(byte[] b, int off, int len) throws IOException {
         Objects.requireNonNull(b);
@@ -514,7 +514,7 @@
      * @throws IOException if an I/O error occurs when reading or writing
      * @throws NullPointerException if {@code out} is {@code null}
      *
-     * @since 1.9
+     * @since 9
      */
     public long transferTo(OutputStream out) throws IOException {
         Objects.requireNonNull(out, "out");