Searched refs:countryCodeMap (Results 1 – 1 of 1) sorted by relevance
1877 final Map<String, Integer> countryCodeMap = new HashMap<>(); in getLocationMcc() local1882 final int count = countryCodeMap.getOrDefault(mcc, 0) + 1; in getLocationMcc()1883 countryCodeMap.put(mcc, count); in getLocationMcc()1887 if (countryCodeMap.size() <= 0) return null; in getLocationMcc()1888 return Collections.max(countryCodeMap.entrySet(), in getLocationMcc()