|
1 | 1 | /*
|
2 |
| - * Copyright (c) 1994, 2022, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 1994, 2023, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -951,7 +951,7 @@ public static int parseUnsignedInt(String s) throws NumberFormatException {
|
951 | 951 | * object equal to the value of:
|
952 | 952 | *
|
953 | 953 | * <blockquote>
|
954 |
| - * {@code new Integer(Integer.parseInt(s, radix))} |
| 954 | + * {@code Integer.valueOf(Integer.parseInt(s, radix))} |
955 | 955 | * </blockquote>
|
956 | 956 | *
|
957 | 957 | * @param s the string to be parsed.
|
@@ -979,7 +979,7 @@ public static Integer valueOf(String s, int radix) throws NumberFormatException
|
979 | 979 | * object equal to the value of:
|
980 | 980 | *
|
981 | 981 | * <blockquote>
|
982 |
| - * {@code new Integer(Integer.parseInt(s))} |
| 982 | + * {@code Integer.valueOf(Integer.parseInt(s))} |
983 | 983 | * </blockquote>
|
984 | 984 | *
|
985 | 985 | * @param s the string to be parsed.
|
@@ -1286,14 +1286,14 @@ public static Integer getInteger(String nm) {
|
1286 | 1286 | * equal to the value of:
|
1287 | 1287 | *
|
1288 | 1288 | * <blockquote>
|
1289 |
| - * {@code getInteger(nm, new Integer(val))} |
| 1289 | + * {@code getInteger(nm, Integer.valueOf(val))} |
1290 | 1290 | * </blockquote>
|
1291 | 1291 | *
|
1292 | 1292 | * but in practice it may be implemented in a manner such as:
|
1293 | 1293 | *
|
1294 | 1294 | * <blockquote><pre>
|
1295 | 1295 | * Integer result = getInteger(nm, null);
|
1296 |
| - * return (result == null) ? new Integer(val) : result; |
| 1296 | + * return (result == null) ? Integer.valueOf(val) : result; |
1297 | 1297 | * </pre></blockquote>
|
1298 | 1298 | *
|
1299 | 1299 | * to avoid the unnecessary allocation of an {@code Integer}
|
|
0 commit comments