jSparrow v3.10.0/v2.7.0

Released: Oct 31, 2019

Mises à jour de v3.10.0/v2.7.0

Fonctionnalités

New Rule - Use Optional::ifPresentOrElse (for Java 9 and above).

  • In Java 9, the Optional API has been extended with the Optional#ifPresentOrElse method. jSparrow replaces if-then-else statements, checking for Optional#isPresent , with a single invocation of Optional#ifPresentOrElse.
    This improves the readability of the code and enables the usage of higher order functions with Optional.