static L withoutNulls(L l) { new L l2; for (A a : l) if (a != null) l2.add(a); ret l2; }