| 11 | |
| 12 | // Adapter class for ParseTrash.fillBin(): |
| 13 | class TypeMapAdapter implements Fillable { |
| 14 | private TypeMap<Trash> map; |
| 15 | TypeMapAdapter(TypeMap<Trash> map) { |
| 16 | this.map = map; |
| 17 | } |
| 18 | @Override |
| 19 | public void addTrash(Trash t) { map.add(t); } |
| 20 | } |
| 21 | |
| 22 | public class TypeMapTrash { |
| 23 | @SuppressWarnings("unchecked") |
nothing calls this directly
no outgoing calls
no test coverage detected