Some small classpath tweaks to be compatible with openJDK's api

This commit is contained in:
Mike Jensen
2014-12-15 16:26:41 -07:00
parent a53ffc1792
commit 32a1fb21f2
5 changed files with 40 additions and 2 deletions

View File

@ -49,6 +49,14 @@ public class ConcurrentHashMap<K,V>
this();
}
public ConcurrentHashMap(int initialCapacity, float loadFactor) {
this();
}
public ConcurrentHashMap(int initialCapacity, float loadFactor, int concurrencyLevel) {
this();
}
public boolean isEmpty() {
return content.size == 0;
}