| 1 | package basic; |
| 2 | |
| 3 | public class RunnableEmpty implements Runnable { |
| 4 | |
| 5 | public static final RunnableEmpty INSTANCE = new RunnableEmpty(); |
| 6 | |
| 7 | @Override |
| 8 | public void run() { |
| 9 | // do nothing |
| 10 | } |
| 11 | |
| 12 | public static void doNothing() { |
| 13 | // do nothing; |
| 14 | } |
| 15 | |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected