LocalDateTemporalAmount
LocalDate.plus() and minus() does not work with Durations. LocalDate represents civil time (years/months/days), so java.time.Period is the appropriate thing to add or subtract instead.
Suppression
Suppress false positives by adding the suppression annotation @SuppressWarnings("LocalDateTemporalAmount")
to the enclosing element.