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