< prev index next >

src/java.base/share/classes/java/time/chrono/ChronoLocalDateImpl.java

Print this page
8204444: java.time cleanup
Reviewed-by: scolebourne, rriggs

@@ -108,11 +108,11 @@
  *        int dow = date.get(ChronoField.DAY_OF_WEEK);
  *        int month = date.get(ChronoField.MONTH_OF_YEAR);
  *        int year = date.get(ChronoField.YEAR);
  *        System.out.printf("  Today is %s %s %d-%s-%d%n", date.getChronology().getID(),
  *                dow, day, month, year);
-
+ *
  *        // Print today's date and the last day of the year
  *        ChronoLocalDate now1 = Chronology.of("Hijrah").dateNow();
  *        ChronoLocalDate first = now1.with(ChronoField.DAY_OF_MONTH, 1)
  *                .with(ChronoField.MONTH_OF_YEAR, 1);
  *        ChronoLocalDate last = first.plus(1, ChronoUnit.YEARS)
< prev index next >