We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 064a525 commit 77509e1Copy full SHA for 77509e1
src/com/diffplug/common/swt/Shells.java
@@ -127,8 +127,16 @@ public Shell openOn(Shell parent) {
127
return shell;
128
}
129
130
- /** Opens the shell on this parent and blocks. */
+ /**
131
+ * @deprecated for {@link #openOnBlocking(Shell)} - same behavior, but name is consistent with the others.
132
+ */
133
+ @Deprecated
134
public void openOnAndBlock(Shell parent) {
135
+ openOnBlocking(parent);
136
+ }
137
+
138
+ /** Opens the shell on this parent and blocks. */
139
+ public void openOnBlocking(Shell parent) {
140
SwtMisc.loopUntilDisposed(openOn(parent));
141
142
0 commit comments