mirror of
https://github.com/corda/corda.git
synced 2025-01-03 19:54:13 +00:00
27 lines
627 B
Java
27 lines
627 B
Java
|
import java.util.Collection;
|
||
|
import java.util.Map;
|
||
|
|
||
|
public class Collections {
|
||
|
public static void main(String[] args) {
|
||
|
testValues();
|
||
|
}
|
||
|
|
||
|
@SuppressWarnings("rawtypes")
|
||
|
private static void testValues() {
|
||
|
Map testMap = java.util.Collections.unmodifiableMap(java.util.Collections.emptyMap());
|
||
|
Collection values = testMap.values();
|
||
|
|
||
|
if (values == null) {
|
||
|
throw new NullPointerException();
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
values.clear();
|
||
|
|
||
|
throw new IllegalStateException("Object should be immutable, exception should have thrown");
|
||
|
} catch (Exception e) {
|
||
|
// expected
|
||
|
}
|
||
|
}
|
||
|
}
|