mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
fix build breakage due to missing isEmpty() methods
This commit is contained in:
@ -22,6 +22,10 @@ public class HashSet<T> implements Set<T> {
|
||||
return map.size();
|
||||
}
|
||||
|
||||
public boolean isEmpty() {
|
||||
return map.isEmpty();
|
||||
}
|
||||
|
||||
public boolean contains(T element) {
|
||||
return map.containsKey(element);
|
||||
}
|
||||
|
Reference in New Issue
Block a user