Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8302513: remove sun.awt.util.IdentityLinkedList
Reviewed-by: serb, prr, aivanov
  • Loading branch information
Stuart Marks committed Mar 10, 2023
1 parent bf16b5b commit 94de0a7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 882 deletions.
3 changes: 1 addition & 2 deletions src/java.desktop/share/classes/java/awt/Dialog.java
Expand Up @@ -48,7 +48,6 @@
import sun.awt.AppContext;
import sun.awt.SunToolkit;
import sun.awt.util.IdentityArrayList;
import sun.awt.util.IdentityLinkedList;

/**
* A Dialog is a top-level window with a title and a border
Expand Down Expand Up @@ -1417,7 +1416,7 @@ void modalShow() {
k++;
}

java.util.List<Window> toBlock = new IdentityLinkedList<Window>();
java.util.List<Window> toBlock = new IdentityArrayList<Window>();
// block all windows from scope of blocking except from blockers' hierarchies
IdentityArrayList<Window> unblockedWindows = Window.getAllUnblockedWindows();
for (Window w : unblockedWindows) {
Expand Down

1 comment on commit 94de0a7

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.