(Runnable task)
| 32 | } |
| 33 | |
| 34 | public static Future<?> submit(Runnable task) { |
| 35 | return executor.submit(task); |
| 36 | } |
| 37 | |
| 38 | public static Future<?> submitLarge(Runnable task) { |
| 39 | return largeExecutor.submit(task); |
no outgoing calls
no test coverage detected