< prev index next >

jdk/src/java.base/share/classes/java/util/Enumeration.java

Print this page

        

@@ -110,11 +110,11 @@
      * whose {@link Iterator#remove remove} method throws
      * {@code UnsupportedOperationException}.
      *
      * @return an Iterator representing the remaining elements of this Enumeration
      *
-     * @since 1.9
+     * @since 9
      */
     default Iterator<E> asIterator() {
         return new Iterator<>() {
             @Override public boolean hasNext() {
                 return hasMoreElements();
< prev index next >