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