(Runnable task)
| 40 | } |
| 41 | |
| 42 | public static void execute(Runnable task) { |
| 43 | executor.execute(task); |
| 44 | } |
| 45 | |
| 46 | public static void schedule(Runnable task, long delay, TimeUnit unit) { |
| 47 | scheduler.schedule(task, delay, unit); |
no outgoing calls
no test coverage detected