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