ICU-21028 Modifies ICU data generator so that the CLDR version is

no longer added to the .txt data files with the exception of the
root.txt files. This will drastically limit the number of changed
files during a version upgrade because the version change is the
only change in many of the data files.

ICU-21028 Fixed an indent.

ICU-21028 Factor in feedback from review.
This commit is contained in:
gnrunge 2020-09-22 16:26:26 -07:00 committed by Norbert Runge
parent 9f388a34f9
commit f773df26fd

View file

@ -348,7 +348,9 @@ public final class LdmlConverter {
});
if (!splitData.getPaths().isEmpty() || isBaseLanguage || dir.includeEmpty()) {
splitData.setVersion(cldrVersion);
if (id.equals("root")) {
splitData.setVersion(cldrVersion);
}
write(splitData, outDir, false);
writtenLocaleIds.put(dir, id);
}
@ -561,7 +563,7 @@ public final class LdmlConverter {
} else {
// These empty files only exist because the target of an alias has a parent locale
// which is itself not in the set of written ICU files. An "indirect alias target".
icuData.setVersion(config.getVersionInfo().getCldrVersion());
// No need to add data: Just write a resource bundle with an empty top-level table.
}
write(icuData, dir, false);
}