static void copyList(Collection a, Collection b) { b.clear(); b.addAll(a); }