On Tue, 7 May 2024 18:03:23 GMT, Alisen Chung <ach...@openjdk.org> wrote:

> Opening closed dnd test
> Test is green on all platforms

test/jdk/java/awt/dnd/MouseEventAfterStartDragTest/MouseEventAfterStartDragTest.java
 line 169:

> 167: 
> 168:     public void dispose() {
> 169:         frame.dispose();

Suggestion:

        SwingUtilities.invokeAndWait(() -> {
            if (frame != null) {
                frame.dispose();
            }
        }

-------------

PR Review Comment: https://git.openjdk.org/jdk/pull/19128#discussion_r1593396279

Reply via email to