From e3ec3378f05313c6aefbea8e33f1179fad0ff684 Mon Sep 17 00:00:00 2001 From: macchiati Date: Wed, 12 Jun 2024 10:25:59 -0700 Subject: [PATCH] CLDR-17719 Update coverage goals --- .../src/main/java/org/unicode/cldr/tool/ShowLanguages.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ShowLanguages.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ShowLanguages.java index 06485590f02..8febcaef8cd 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ShowLanguages.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ShowLanguages.java @@ -8,7 +8,6 @@ import com.google.common.base.Joiner; import com.google.common.collect.ImmutableMap; -import com.google.common.collect.ImmutableSortedSet; import com.google.common.collect.Multimap; import com.google.common.collect.Multimaps; import com.google.common.collect.Sets; @@ -1374,10 +1373,8 @@ private String getLanguageName(String languageCode) { static final Set TC_Vendors = Sets.union( - // this is a slightly odd construction, to add airbnb into the sorted items, - // but then end with cldr - ImmutableSortedSet.copyOf( - Sets.union(Organization.getTCOrgs(), Set.of(Organization.airbnb))), + Organization.getTCOrgs(), + // This adds the CLDR org at the end of the list Set.of(Organization.cldr)); private void showCoverageGoals(PrintWriter pw) throws IOException {