static Collection copyList(Collection a, Collection b) { if (a != null && b != null && a != b) { b.clear(); b.addAll(a); } ret a; }