()
| 600 | } |
| 601 | |
| 602 | @SuppressWarnings("unchecked") |
| 603 | private static <K, V> Function<Map<K, V>, Map<K, V>> unmodifiableWrapper() { |
| 604 | return (Function) UNMODIFIABLE_WRAPPER; |
| 605 | } |
| 606 | |
| 607 | private static final Function<? extends Map<?, ?>, ? extends Map<?, ?>> UNMODIFIABLE_WRAPPER = |
| 608 | new Function<Map<Object, Object>, Map<Object, Object>>() { |