public synchronized void increase()

in src/main/java/com/uber/uberscriptquery/util/CounterMap.java [25:32]


    public synchronized void increase(String name) {
        Long oldValue = map.get(name);
        if (oldValue == null) {
            map.put(name, 1L);
        } else {
            map.put(name, oldValue + 1);
        }
    }