Closed
Description
Hello. I have a question about Intl component : In RegionDataGenerator, the "eu" code (European Union) is blacklisted (reason: "Look like countries, but are sub-continents") but not "ez" (Eurozone). Is it a mistake ?
/**
* Regions excluded from generation.
*/
private static $blacklist = array(
self::UNKNOWN_REGION_ID => true,
// Look like countries, but are sub-continents
self::OUTLYING_OCEANIA_REGION_ID => true,
self::EUROPEAN_UNION_ID => true,
// No longer exists
self::NETHERLANDS_ANTILLES_ID => true,
// Uninhabited islands
self::BOUVET_ISLAND_ID => true,
self::HEARD_MCDONALD_ISLANDS_ID => true,
self::CLIPPERTON_ISLAND_ID => true,
);