124125126127128129130131132133134
} final MutableInteger count = linkMap.get(key); if (count == null) { linkMap.put(key, new MutableInteger(-1)); } else { if (count.decrement() == 0) { linkMap.remove(key); } } }