()
| 183 | } |
| 184 | |
| 185 | public static final <K,V> Map<K,V> emptyMap() { |
| 186 | return (Map<K, V>) new UnmodifiableMap<Object, Object>( |
| 187 | new HashMap<Object, Object>(0)); |
| 188 | } |
| 189 | |
| 190 | public static final <T> Set<T> emptySet() { |
| 191 | return (Set<T>) new UnmodifiableSet<Object>( |