< prev index next >

jdk/src/java.base/share/classes/java/lang/Integer.java

Print this page

        

@@ -714,11 +714,11 @@
      * @throws     NumberFormatException  if the {@code CharSequence} does not
      *             contain a parsable {@code int} in the specified
      *             {@code radix}, or if {@code radix} is either smaller than
      *             {@link java.lang.Character#MIN_RADIX} or larger than
      *             {@link java.lang.Character#MAX_RADIX}.
-     * @since  1.9
+     * @since  9
      */
     public static int parseInt(CharSequence s, int beginIndex, int endIndex, int radix)
                 throws NumberFormatException {
         s = Objects.requireNonNull(s);
 

@@ -897,11 +897,11 @@
      * @throws     NumberFormatException  if the {@code CharSequence} does not
      *             contain a parsable unsigned {@code int} in the specified
      *             {@code radix}, or if {@code radix} is either smaller than
      *             {@link java.lang.Character#MIN_RADIX} or larger than
      *             {@link java.lang.Character#MAX_RADIX}.
-     * @since  1.9
+     * @since  9
      */
     public static int parseUnsignedInt(CharSequence s, int beginIndex, int endIndex, int radix)
                 throws NumberFormatException {
         s = Objects.requireNonNull(s);
 
< prev index next >