for (Locale locale : availableLocales) {
String name = locale.getDisplayCountry(currentLocale);
String iso = locale.getCountry();
if (!EMPTY.equals(name) && !EMPTY.equals(iso)) {
countrySet.add(new Country(iso, name));
}
}
log.debug("Number of countries added: " + countrySet.size());
return countrySet;