1
1
/*
2
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2018, 2022, 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
35
35
import java .awt .Dimension ;
36
36
import java .awt .event .ActionEvent ;
37
37
import java .awt .event .ActionListener ;
38
- import java .util .ArrayList ;
39
38
import java .util .List ;
39
+ import java .util .concurrent .CopyOnWriteArrayList ;
40
40
import java .util .concurrent .atomic .AtomicReference ;
41
41
import javax .swing .JButton ;
42
42
import javax .swing .JFrame ;
@@ -55,7 +55,7 @@ public final class MultipleContextsFunctionalTest {
55
55
private static final int CHECK_LAPSE = 100 ;
56
56
private static final int MAX_COUNT = MAX_TIME / INTERVAL ;
57
57
private static final int EXPECTED = MAX_COUNT * NUM_WINDOW ;
58
- private static final List <TestWindow > WINDOWS = new ArrayList < TestWindow >();
58
+ private static final List <TestWindow > WINDOWS = new CopyOnWriteArrayList < >();
59
59
60
60
public static void main (String [] args ) {
61
61
for (int i = 0 ; i < NUM_WINDOW ; i ++) {
@@ -126,7 +126,7 @@ public void run() {
126
126
private static final class TestWindow extends JFrame implements ActionListener {
127
127
128
128
private final JButton btn ;
129
- private int counter = 0 ;
129
+ private volatile int counter = 0 ;
130
130
private final Timer t ;
131
131
132
132
TestWindow (final int num ) {
0 commit comments