mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
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:
parent
9f388a34f9
commit
f773df26fd
1 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue