Skip to content

Commit

Permalink
CLDR-17781 CheckChildren should skip null values (#3842)
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 authored Jul 3, 2024
1 parent 2ea95b1 commit 9707787
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ public CheckCLDR handleCheck(
} catch (RuntimeException e) {
throw e;
}
if (otherValue == null) {
// This child didn't even have a value. Path may be an 'extra path'.
continue;
}
if (!otherValue.equals(CldrUtility.NO_INHERITANCE_MARKER)) {
tempSet.put(immediateChildren[i].getLocaleID(), otherValue);
} else {
Expand Down

0 comments on commit 9707787

Please sign in to comment.