Skip to content

Commit

Permalink
CLDR-15698 Time examples < 10 and > 12 (#3895)
Browse files Browse the repository at this point in the history
Co-authored-by: Elango Cheran <[email protected]>
  • Loading branch information
e-ikwut and echeran authored Sep 11, 2024
1 parent 135658d commit d120055
Showing 1 changed file with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ public class ExampleGenerator {

private static final Date DATE_SAMPLE2;
private static final Date DATE_SAMPLE3;
private static final Date DATE_SAMPLE4;
private static final Date DATE_SAMPLE5;

static {
Calendar calendar = Calendar.getInstance(ZONE_SAMPLE, ULocale.ENGLISH);
Expand All @@ -179,6 +181,11 @@ public class ExampleGenerator {
DATE_SAMPLE2 = calendar.getTime();
calendar.set(1999, 8, 5, 7, 0, 0); // 1999-09-05 07:00:00
DATE_SAMPLE3 = calendar.getTime();
calendar.set(1999, 8, 5, 23, 0, 0); // 1999-09-05 23:00:00
DATE_SAMPLE4 = calendar.getTime();

calendar.set(1999, 8, 5, 3, 25, 59); // 1999-09-05 03:25:59
DATE_SAMPLE5 = calendar.getTime();
}

static final List<DecimalQuantity> CURRENCY_SAMPLES =
Expand Down Expand Up @@ -2670,7 +2677,12 @@ private String handleDateFormatItem(String xpath, String value, boolean showCont
+ contextheader
+ exampleEndSymbol
: "";
example = addExampleResult(sdf.format(DATE_SAMPLE), example, showContexts);
String sup_twelve_example = sdf.format(DATE_SAMPLE);
String sub_ten_example = sdf.format(DATE_SAMPLE5);
example = addExampleResult(sup_twelve_example, example, showContexts);
if (!sup_twelve_example.equals(sub_ten_example)) {
example = addExampleResult(sub_ten_example, example, showContexts);
}
return example;
}
} else {
Expand Down

0 comments on commit d120055

Please sign in to comment.