Skip to content

Commit ab7f43f

Browse files
Justin Lunaotoj
Justin Lu
authored andcommittedJan 13, 2023
8299498: Usage of constructors of primitive wrapper classes should be avoided in java.lang API docs
Backport-of: d663b5d
1 parent bc498f8 commit ab7f43f

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed
 

‎src/java.base/share/classes/java/lang/ArrayStoreException.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1995, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1995, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -31,7 +31,7 @@
3131
* following code generates an {@code ArrayStoreException}:
3232
* <blockquote><pre>
3333
* Object x[] = new String[3];
34-
* x[0] = new Integer(0);
34+
* x[0] = Integer.valueOf(0);
3535
* </pre></blockquote>
3636
*
3737
* @since 1.0

‎src/java.base/share/classes/java/lang/Byte.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -233,7 +233,7 @@ public static byte parseByte(String s) throws NumberFormatException {
233233
* equal to the value of:
234234
*
235235
* <blockquote>
236-
* {@code new Byte(Byte.parseByte(s, radix))}
236+
* {@code Byte.valueOf(Byte.parseByte(s, radix))}
237237
* </blockquote>
238238
*
239239
* @param s the string to be parsed
@@ -262,7 +262,7 @@ public static Byte valueOf(String s, int radix)
262262
* equal to the value of:
263263
*
264264
* <blockquote>
265-
* {@code new Byte(Byte.parseByte(s))}
265+
* {@code Byte.valueOf(Byte.parseByte(s))}
266266
* </blockquote>
267267
*
268268
* @param s the string to be parsed

‎src/java.base/share/classes/java/lang/Double.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -1260,7 +1260,7 @@ public int compareTo(Double anotherDouble) {
12601260
* of the integer value returned is the same as that of the
12611261
* integer that would be returned by the call:
12621262
* <pre>
1263-
* new Double(d1).compareTo(new Double(d2))
1263+
* Double.valueOf(d1).compareTo(Double.valueOf(d2))
12641264
* </pre>
12651265
*
12661266
* @param d1 the first {@code double} to compare

‎src/java.base/share/classes/java/lang/Float.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -1218,7 +1218,7 @@ public int compareTo(Float anotherFloat) {
12181218
* of the integer value returned is the same as that of the
12191219
* integer that would be returned by the call:
12201220
* <pre>
1221-
* new Float(f1).compareTo(new Float(f2))
1221+
* Float.valueOf(f1).compareTo(Float.valueOf(f2))
12221222
* </pre>
12231223
*
12241224
* @param f1 the first {@code float} to compare.

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* 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 {
951951
* object equal to the value of:
952952
*
953953
* <blockquote>
954-
* {@code new Integer(Integer.parseInt(s, radix))}
954+
* {@code Integer.valueOf(Integer.parseInt(s, radix))}
955955
* </blockquote>
956956
*
957957
* @param s the string to be parsed.
@@ -979,7 +979,7 @@ public static Integer valueOf(String s, int radix) throws NumberFormatException
979979
* object equal to the value of:
980980
*
981981
* <blockquote>
982-
* {@code new Integer(Integer.parseInt(s))}
982+
* {@code Integer.valueOf(Integer.parseInt(s))}
983983
* </blockquote>
984984
*
985985
* @param s the string to be parsed.
@@ -1286,14 +1286,14 @@ public static Integer getInteger(String nm) {
12861286
* equal to the value of:
12871287
*
12881288
* <blockquote>
1289-
* {@code getInteger(nm, new Integer(val))}
1289+
* {@code getInteger(nm, Integer.valueOf(val))}
12901290
* </blockquote>
12911291
*
12921292
* but in practice it may be implemented in a manner such as:
12931293
*
12941294
* <blockquote><pre>
12951295
* Integer result = getInteger(nm, null);
1296-
* return (result == null) ? new Integer(val) : result;
1296+
* return (result == null) ? Integer.valueOf(val) : result;
12971297
* </pre></blockquote>
12981298
*
12991299
* to avoid the unnecessary allocation of an {@code Integer}

‎src/java.base/share/classes/java/lang/Long.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -1114,7 +1114,7 @@ public static long parseUnsignedLong(String s) throws NumberFormatException {
11141114
* to the value of:
11151115
*
11161116
* <blockquote>
1117-
* {@code new Long(Long.parseLong(s, radix))}
1117+
* {@code Long.valueOf(Long.parseLong(s, radix))}
11181118
* </blockquote>
11191119
*
11201120
* @param s the string to be parsed
@@ -1142,7 +1142,7 @@ public static Long valueOf(String s, int radix) throws NumberFormatException {
11421142
* equal to the value of:
11431143
*
11441144
* <blockquote>
1145-
* {@code new Long(Long.parseLong(s))}
1145+
* {@code Long.valueOf(Long.parseLong(s))}
11461146
* </blockquote>
11471147
*
11481148
* @param s the string to be parsed.
@@ -1509,14 +1509,14 @@ public static Long getLong(String nm) {
15091509
* to the value of:
15101510
*
15111511
* <blockquote>
1512-
* {@code getLong(nm, new Long(val))}
1512+
* {@code getLong(nm, Long.valueOf(val))}
15131513
* </blockquote>
15141514
*
15151515
* but in practice it may be implemented in a manner such as:
15161516
*
15171517
* <blockquote><pre>
15181518
* Long result = getLong(nm, null);
1519-
* return (result == null) ? new Long(val) : result;
1519+
* return (result == null) ? Long.valueOf(val) : result;
15201520
* </pre></blockquote>
15211521
*
15221522
* to avoid the unnecessary allocation of a {@code Long} object when

‎src/java.base/share/classes/java/lang/Short.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -177,7 +177,7 @@ public static short parseShort(String s) throws NumberFormatException {
177177
* equal to the value of:
178178
*
179179
* <blockquote>
180-
* {@code new Short(Short.parseShort(s, radix))}
180+
* {@code Short.valueOf(Short.parseShort(s, radix))}
181181
* </blockquote>
182182
*
183183
* @param s the string to be parsed
@@ -206,7 +206,7 @@ public static Short valueOf(String s, int radix)
206206
* equal to the value of:
207207
*
208208
* <blockquote>
209-
* {@code new Short(Short.parseShort(s))}
209+
* {@code Short.valueOf(Short.parseShort(s))}
210210
* </blockquote>
211211
*
212212
* @param s the string to be parsed

0 commit comments

Comments
 (0)
Please sign in to comment.