| 54 | class Belt extends Part {} |
| 55 | |
| 56 | class FanBelt extends Belt { |
| 57 | @Override |
| 58 | public FanBelt get() { return new FanBelt(); } |
| 59 | } |
| 60 | |
| 61 | class GeneratorBelt extends Belt { |
| 62 | @Override public GeneratorBelt get() { |
nothing calls this directly
no outgoing calls
no test coverage detected