src/jdk.internal.vm.compiler/share/classes/jdk.internal.vm.compiler.collections/src/jdk/internal/vm/compiler/collections/UnmodifiableMapCursor.java
changeset 55509 d58442b8abc1
parent 52578 7dd81e82d083
child 58877 aec7bf35d6f5
--- a/src/jdk.internal.vm.compiler/share/classes/jdk.internal.vm.compiler.collections/src/jdk/internal/vm/compiler/collections/UnmodifiableMapCursor.java	Thu Jun 27 03:10:52 2019 +0200
+++ b/src/jdk.internal.vm.compiler/share/classes/jdk.internal.vm.compiler.collections/src/jdk/internal/vm/compiler/collections/UnmodifiableMapCursor.java	Thu Jun 27 03:33:44 2019 +0200
@@ -43,28 +43,28 @@
 /**
  * Cursor to iterate over a map without changing its contents.
  *
- * @since 1.0
+ * @since 19.0
  */
 public interface UnmodifiableMapCursor<K, V> {
     /**
      * Advances to the next entry.
      *
      * @return {@code true} if a next entry exists, {@code false} if there is no next entry.
-     * @since 1.0
+     * @since 19.0
      */
     boolean advance();
 
     /**
      * The key of the current entry.
      *
-     * @since 1.0
+     * @since 19.0
      */
     K getKey();
 
     /**
      * The value of the current entry.
      *
-     * @since 1.0
+     * @since 19.0
      */
     V getValue();
 }