On Mon, 7 Feb 2022 18:25:55 GMT, lawrence.andrews <[email protected]> wrote:
>> test/jdk/java/awt/Graphics/TextAAHintsTest.java line 231:
>>
>>> 229: }
>>> 230: } finally {
>>> 231: frame.dispose();
>>
>> The frame should be disposed on the EDT.
>
> Added code to dispose frame with in EDT.
It is not necessary: the test uses `awt.Frame`, not `swing.JFrame`. All the UI
is created directly on the main thread.
-------------
PR: https://git.openjdk.java.net/jdk/pull/7275
