mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
flesh out some classpath classes
This commit is contained in:
@ -32,6 +32,10 @@ public class Collections {
|
||||
synchronized (lock) { return collection.size(); }
|
||||
}
|
||||
|
||||
public synchronized boolean contains(T e) {
|
||||
synchronized (lock) { return collection.contains(e); }
|
||||
}
|
||||
|
||||
public synchronized boolean add(T e) {
|
||||
synchronized (lock) { return collection.add(e); }
|
||||
}
|
||||
|
Reference in New Issue
Block a user