mirror of
https://github.com/corda/corda.git
synced 2025-03-15 08:41:04 +00:00
Fix mac build
Remove a compiler error by removing an unnecessary method
This commit is contained in:
parent
7ed14948b9
commit
c3c06e4e0e
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user