1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2016-03-28 11:43:55 -07:00
parent 82b74d3cb6
commit 16562814f7

View file

@ -23,13 +23,16 @@ public class CharArrayObjectMap <T> extends CharTable {
public static final CharArrayObjectMap<?> EMPTY_MAP = new CharArrayObjectMap<Object>(0) {
@Override
public Object clone() { return this; }
@Override
public List<char[]> toList() { return Collections.emptyList(); }
@Override
public Object put(char[] key, int start, int length, Object value) {
throw new UnsupportedOperationException();
}
};
/**
* @since 5.4
*/