static void mapPut(Map map, A key, B value) { if (map != null && key != null && value != null) map.put(key, value);# }