()
| 122 | } |
| 123 | |
| 124 | @Override |
| 125 | public void requestFrame() { |
| 126 | if (!isClosed()) { |
| 127 | App.runOnUIThread(() -> { |
| 128 | if (!isClosed()) { |
| 129 | _nRequestFrame(); |
| 130 | } |
| 131 | }); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | public Window maximize() { |
| 136 | assert _onUIThread() : "Should be run on UI thread"; |
nothing calls this directly
no test coverage detected