Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Display.java')
-rw-r--r--tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Display.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Display.java b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Display.java
index 2abc7ec644..bb7c5f7292 100644
--- a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Display.java
+++ b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_widgets_Display.java
@@ -20,6 +20,8 @@ import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
+import java.util.concurrent.atomic.AtomicBoolean;
+
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.DeviceData;
import org.eclipse.swt.graphics.Font;
@@ -414,14 +416,14 @@ public void test_getSyncThread() {
// Create a runnable and invoke with asyncExec to verify that
// the syncThread is null while it's running.
- final boolean[] asyncExecRan = new boolean[] {false};
+ AtomicBoolean asyncExecRan = new AtomicBoolean(false);
display.asyncExec(() -> {
assertNull(display.getSyncThread());
- asyncExecRan[0] = true;
+ asyncExecRan.set(true);
});
try {
- while (!asyncExecRan[0]) {
+ while (!asyncExecRan.get()) {
Thread.sleep(100);
}
} catch (InterruptedException ex) {

Back to the top