(Class<?> key, V value)
| 149 | } |
| 150 | |
| 151 | public V put(Class<?> key, V value) { |
| 152 | V result = get(key); |
| 153 | backingStore.put(key, value); |
| 154 | handleAlteration(key); |
| 155 | return result; |
| 156 | } |
| 157 | |
| 158 | public V remove(Object key) { |
| 159 | if ( !(key instanceof Class) ) { |
no test coverage detected