static Set plusWithoutPunctuation(Collection l) { Set set = new LinkedHashSet; for (S s : unnull(l)) { set.add(s); set.add(dropPunctuation(s)); } ret set; }