(Object key)
| 54 | } |
| 55 | |
| 56 | public boolean containsKey(Object key) { |
| 57 | if ( cache.containsKey(key) ) { |
| 58 | return true; |
| 59 | } |
| 60 | if ( !(key instanceof Class) ) { |
| 61 | return false; |
| 62 | } |
| 63 | return get(key)!=null; |
| 64 | } |
| 65 | |
| 66 | @SuppressWarnings("unchecked") |
| 67 | public boolean containsValue(Object value) { |
nothing calls this directly
no test coverage detected