(Object object)
| 515 | if (keySet == null) { |
| 516 | keySet = new AbstractSet<K>() { |
| 517 | @Override |
| 518 | public boolean contains(Object object) { |
| 519 | return containsKey(object); |
| 520 | } |
| 521 | |
| 522 | @Override |
| 523 | public int size() { |
nothing calls this directly
no test coverage detected