(Runnable o)
| 21 | } |
| 22 | |
| 23 | private static void check(Runnable o) { |
| 24 | check(GraphicsContext.getContext() != null); |
| 25 | o.run(); |
| 26 | } |
| 27 | |
| 28 | private static <T> T check2(Callable<T> o) { |
| 29 | check(GraphicsContext.getContext() != null); |
no test coverage detected