| 3 | import periphery.Place; |
| 4 | |
| 5 | public interface RunnableWith<Argument> { |
| 6 | |
| 7 | public static final RunnableWith<String> INSTANCE = argument -> { |
| 8 | // do nothing |
| 9 | }; |
| 10 | |
| 11 | public static final RunnableWith<Place> INSTANCE_PLACE = argument -> { |
| 12 | // do nothing |
| 13 | }; |
| 14 | |
| 15 | public abstract void run(Argument argument); |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected