(long window, String[] files)
| 290 | GlfwCallback a = adaptors.get(window); |
| 291 | if (a != null) a.drop(window, files); |
| 292 | }; |
| 293 | |
| 294 | if (checkThread()) r.run(); |
| 295 | else { |
| 296 | events.addLast(r); |
| 297 | RunLoop.main.shouldSleep.add(Windows.this); |
| 298 | RunLoop.main.interrupt(); |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | |
| 303 | @Override |
| 304 | public boolean windowClose(long window) { |
| 305 | Runnable r = () -> { |
| 306 | checkClassLoader(); |
| 307 | GlfwCallback a = adaptors.get(window); |
| 308 | if (a != null) a.windowClose(window); |
| 309 | }; |
| 310 |
no test coverage detected