Skip to content

Instantly share code, notes, and snippets.

@agustarc
Created February 5, 2017 08:42
Show Gist options
  • Save agustarc/e203e7b244807271d40d5f12e788b962 to your computer and use it in GitHub Desktop.
Save agustarc/e203e7b244807271d40d5f12e788b962 to your computer and use it in GitHub Desktop.
Optional.ofNullable(response.getCart()).ifPresent(c -> {
Optional.ofNullable(c.getProduct()).ifPresent(p -> System.out.println(p.getName()));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment