src/share/classes/java/io/SequenceInputStream.java

Print this page
rev 10048 : 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
Reviewed-by:

@@ -38,11 +38,11 @@
  * whereupon it reads from the second one,
  * and so on, until end of file is reached
  * on the last of the contained input streams.
  *
  * @author  Author van Hoff
- * @since   JDK1.0
+ * @since   1.0
  */
 public
 class SequenceInputStream extends InputStream {
     Enumeration<? extends InputStream> e;
     InputStream in;

@@ -130,11 +130,11 @@
      *         skipped over) from the current underlying input stream
      *         without blocking or {@code 0} if this input stream
      *         has been closed by invoking its {@link #close()} method
      * @exception  IOException  if an I/O error occurs.
      *
-     * @since   JDK1.1
+     * @since   1.1
      */
     public int available() throws IOException {
         if (in == null) {
             return 0; // no way to signal EOF from available()
         }