static void addIfNotEmpty(Collection l, S s) { if (nempty(s)) l.add(s); } static void addIfNotEmpty(Collection l, Map m) { if (nempty(m)) l.add(m); }