mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8255299: Drop explicit zeroing at instantiation of Atomic* objects
Reviewed-by: redestad, serb, prr
This commit is contained in:
parent
6b2d11ba24
commit
3c4fc79326
17 changed files with 16 additions and 19 deletions
|
@ -95,7 +95,7 @@ import jdk.internal.access.JavaSecurityAccess;
|
|||
* @since 1.1
|
||||
*/
|
||||
public class EventQueue {
|
||||
private static final AtomicInteger threadInitNumber = new AtomicInteger(0);
|
||||
private static final AtomicInteger threadInitNumber = new AtomicInteger();
|
||||
|
||||
private static final int LOW_PRIORITY = 0;
|
||||
private static final int NORM_PRIORITY = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue