mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Flesh out art for Dominaria and Shandalar regions
This commit is contained in:
@@ -135,6 +135,15 @@ public class FCollection<T> implements List<T>, Set<T>, FCollectionView<T>, Clon
|
||||
}
|
||||
return changed;
|
||||
}
|
||||
public boolean addAll(T[] c) {
|
||||
boolean changed = false;
|
||||
for (T e : c) {
|
||||
if (add(e)) {
|
||||
changed = true;
|
||||
}
|
||||
}
|
||||
return changed;
|
||||
}
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public boolean addAll(int index, Collection<? extends T> c) {
|
||||
|
||||
Reference in New Issue
Block a user