mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-08 11:03:28 +02:00
Cosmetics.
This commit is contained in:
parent
82b74d3cb6
commit
16562814f7
1 changed files with 3 additions and 0 deletions
|
@ -23,13 +23,16 @@ public class CharArrayObjectMap <T> extends CharTable {
|
||||||
public static final CharArrayObjectMap<?> EMPTY_MAP = new CharArrayObjectMap<Object>(0) {
|
public static final CharArrayObjectMap<?> EMPTY_MAP = new CharArrayObjectMap<Object>(0) {
|
||||||
@Override
|
@Override
|
||||||
public Object clone() { return this; }
|
public Object clone() { return this; }
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<char[]> toList() { return Collections.emptyList(); }
|
public List<char[]> toList() { return Collections.emptyList(); }
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object put(char[] key, int start, int length, Object value) {
|
public Object put(char[] key, int start, int length, Object value) {
|
||||||
throw new UnsupportedOperationException();
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 5.4
|
* @since 5.4
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue