mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
Some small classpath tweaks to be compatible with openJDK's api
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user