mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8299498: Usage of constructors of primitive wrapper classes should be avoided in java.lang API docs
Reviewed-by: naoto, darcy, rriggs, mchung, lancea
This commit is contained in:
parent
437d69a220
commit
d663b5da10
7 changed files with 22 additions and 22 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1995, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1995, 2023, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -31,7 +31,7 @@ package java.lang;
|
|||
* following code generates an {@code ArrayStoreException}:
|
||||
* <blockquote><pre>
|
||||
* Object x[] = new String[3];
|
||||
* x[0] = new Integer(0);
|
||||
* x[0] = Integer.valueOf(0);
|
||||
* </pre></blockquote>
|
||||
*
|
||||
* @since 1.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue