mirror of
https://github.com/corda/corda.git
synced 2025-06-18 07:08:15 +00:00
Merge branch 'master' of oss.readytalk.com:/var/local/git/avian
This commit is contained in:
@ -97,10 +97,6 @@ public class LinkedList<T> implements List<T> {
|
||||
return find(element) != null;
|
||||
}
|
||||
|
||||
public void addAll(Collection<T> c) {
|
||||
for (T t: c) add(t);
|
||||
}
|
||||
|
||||
public boolean add(T element) {
|
||||
addLast(element);
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user