static L ai_withoutInvalidNodes(Collection l) { new L x; if (l != null) for (WebNode n : l) if (!ai_isInvalidWeb(n.web)) x.add(n); ret x; }