(Object key)
| 156 | } |
| 157 | |
| 158 | public V remove(Object key) { |
| 159 | if ( !(key instanceof Class) ) { |
| 160 | return null; |
| 161 | } |
| 162 | Class<?> clazz = (Class<?>)key; |
| 163 | V previous = get(clazz); |
| 164 | if ( backingStore.remove(clazz)!=null ) { |
| 165 | handleAlteration(clazz); |
| 166 | } |
| 167 | return previous; |
| 168 | } |
| 169 | |
| 170 | public void putAll(Map<? extends Class<?>, ? extends V> m) { |
| 171 | for (Map.Entry<? extends Class<?>, ? extends V> entry : m.entrySet()) { |
nothing calls this directly
no test coverage detected