(Object mapObj, Object mapKey)
| 266 | // with less boilerplate and casts |
| 267 | // |
| 268 | @SuppressWarnings("TypeParameterUnusedInFormals") |
| 269 | private <T> T asMapGet(Object mapObj, Object mapKey) { |
| 270 | Map<Object, ?> map = (Map<Object, ?>) mapObj; |
| 271 | return (T) map.get(mapKey); |
| 272 | } |
| 273 | } |
no test coverage detected