We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7158bb0 commit 8c363b4Copy full SHA for 8c363b4
core/src/main/java/vlsi/utils/CompactHashMapClass.java
@@ -38,7 +38,7 @@ public class CompactHashMapClass<K, V> {
38
39
// This value is used as a marker of deleted object
40
// "new String" is required to avoid clashing with regular strings
41
- public static final String[] REMOVED_OBJECT = new String[]{"Non existing mapping value"};
+ public static final String REMOVED_OBJECT = new String("Non existing mapping value");
42
43
public CompactHashMapClass(com.github.andrewoma.dexx.collection.Map<K, Integer> key2slot, Map<K, V> defaultValues, CompactHashMapClassEmptyDefaults<K, V> mapWithEmptyDefaults) {
44
this.key2slot = key2slot;
0 commit comments