(Object object)
| 493 | if (keySet == null) { |
| 494 | keySet = new AbstractSet<K>() { |
| 495 | @Override |
| 496 | public boolean contains(Object object) { |
| 497 | return containsKey(object); |
| 498 | } |
| 499 | |
| 500 | @Override |
| 501 | public int size() { |
nothing calls this directly
no test coverage detected