| 1 | package org.dynjs.runtime.java; |
| 2 | |
| 3 | public class Dispatcher { |
| 4 | |
| 5 | public Object handle(GenericHandler<Thing> handler) { |
| 6 | Thing thing = new Thing(); |
| 7 | |
| 8 | return handler.handle( thing); |
| 9 | } |
| 10 | |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected