The following code prints "Hijrah-umalqura AH 1534-12-24" the incorrect date.
System.out.println(HijrahChronology.INSTANCE.date(1534, 2, 10).with(ChronoField.DAY_OF_YEAR, 354));
The 354th day (the last day) of the year 1534 maps to 1534-12-29.
System.out.println(HijrahChronology.INSTANCE.date(1534, 2, 10).with(ChronoField.DAY_OF_YEAR, 354));
The 354th day (the last day) of the year 1534 maps to 1534-12-29.