| 30 | } |
| 31 | |
| 32 | static class Car implements Vehicle { |
| 33 | private String brand; |
| 34 | |
| 35 | public Car(String brand) { |
| 36 | this.brand = brand; |
| 37 | } |
| 38 | |
| 39 | @Override |
| 40 | public String getName() { |
| 41 | return brand; |
| 42 | } |
| 43 | } |
| 44 | } |
nothing calls this directly
no outgoing calls
no test coverage detected