(Set<MatchType> types)
| 474 | } |
| 475 | |
| 476 | public void onMatchChange(Set<MatchType> types) { |
| 477 | for (IGuiComponent c : components) { |
| 478 | c.onMatchChange(types); |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | public static <T> CompletableFuture<T> runAsyncTask(Callable<T> task) { |
| 483 | Task<T> jfxTask = new Task<T>() { |
nothing calls this directly
no test coverage detected