Skip to content

Instantly share code, notes, and snippets.

@ahndmal
Created April 14, 2022 08:35
Show Gist options
  • Select an option

  • Save ahndmal/166fdd78a851de00d8719293453cc00f to your computer and use it in GitHub Desktop.

Select an option

Save ahndmal/166fdd78a851de00d8719293453cc00f to your computer and use it in GitHub Desktop.
public static LocalDate toLocalDate(Date date) {
return date == null ? null : date.toInstant().atZone(ZoneId.systemDefault()).toLocalDate();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment