static Map mapPutOrCreate(Map map, A key, B value) { if (key != null && value != null) { if (map == null) map = new HashMap; map.put(key, value); } ret map; }