From b2026ecc5b7b2e85bf9da4aace18fea44cad69aa Mon Sep 17 00:00:00 2001 From: Mihai Nita Date: Fri, 7 Feb 2025 00:24:42 -0800 Subject: [PATCH] ICU-22781 Bring back the data generation of concentr/perbillion --- .../icu/tool/cldrtoicu/IcuTextWriter.java | 27 +------------------ 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/IcuTextWriter.java b/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/IcuTextWriter.java index c302f74798f..93f23524c90 100644 --- a/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/IcuTextWriter.java +++ b/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/IcuTextWriter.java @@ -68,13 +68,6 @@ final class IcuTextWriter { this.icuData = checkNotNull(icuData); } - // ICU-22781: start section - // TODO: remove once ICU-22781 is resolved - private final static RbPath LOCALE_PER_BILLION = RbPath.of("concentr", "portion-per-1e9"); - private final static RbPath SUPLEMENTAL_UNITS = RbPath.of("idValidity", "unit", "regular"); - private final static RbValue SUPLEMENTAL_PER_BILLION = RbValue.of("concentr-portion-per-1e9"); - // ICU-22781: end section - // TODO: Write a UTF-8 header (see https://unicode-org.atlassian.net/browse/ICU-10197). private void writeTo(PrintWriter out, List header) { out.write('\uFEFF'); @@ -100,17 +93,6 @@ final class IcuTextWriter { RbPath lastPath = RbPath.of(); for (RbPath path : icuData.getPaths()) { - // ICU-22781: start section - boolean mightBeSupplemental = false; - if (path.contains(LOCALE_PER_BILLION)) { - // I tried logging here, but it is too noisy. - // About 20 entries (and logging 20 lines) per locale. - continue; - } - if (path.contains(SUPLEMENTAL_UNITS)) { - mightBeSupplemental = true; - } - // ICU-22781: end section // Close any blocks up to the common path length. Since paths are all distinct, the // common length should always be shorter than either path. We add 1 since we must also // account for the implicit root segment. @@ -119,14 +101,7 @@ final class IcuTextWriter { closeLastPath(commonDepth, out); // After opening the value will be ready for the next value to be written. openNextPath(path, out); - List values = icuData.get(path); - // ICU-22781: start section - if (mightBeSupplemental) { - System.out.println("(skipping " + SUPLEMENTAL_PER_BILLION + " until ICU-22781 is fixed)"); - values.remove(SUPLEMENTAL_PER_BILLION); - } - // ICU-22781: end section - valueWasInline = appendValues(icuData.getName(), path, values, out); + valueWasInline = appendValues(icuData.getName(), path, icuData.get(path), out); lastPath = path; } closeLastPath(0, out);