Flesh out art for Dominaria and Shandalar regions

This commit is contained in:
drdev
2014-11-22 05:46:15 +00:00
parent 74f159c420
commit f62312ab07
2 changed files with 35 additions and 48 deletions

View File

@@ -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) {