(Object key)
| 41 | } |
| 42 | |
| 43 | public synchronized boolean containsKey(Object key) { |
| 44 | return map.containsKey(key); |
| 45 | } |
| 46 | |
| 47 | public synchronized boolean containsValue(Object value) { |
| 48 | return map.containsValue(value); |
nothing calls this directly
no test coverage detected