(Object key)
| 717 | } |
| 718 | |
| 719 | public boolean containsKey(Object key) { |
| 720 | synchronized (mutex) { |
| 721 | return m.containsKey(key); |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | public boolean containsValue(Object value) { |
| 726 | synchronized (mutex) { |
nothing calls this directly
no test coverage detected