| 6 | import java.util.concurrent.*; |
| 7 | |
| 8 | class ShowThread implements Runnable { |
| 9 | @Override public void run() { |
| 10 | System.out.println( |
| 11 | Thread.currentThread().getName()); |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | public class WorkStealingPool { |
| 16 | public static void main(String[] args) |
nothing calls this directly
no outgoing calls
no test coverage detected