Skip to content

Instantly share code, notes, and snippets.

@ndeverge
Created February 13, 2012 09:33
Show Gist options
  • Save ndeverge/1815478 to your computer and use it in GitHub Desktop.
Save ndeverge/1815478 to your computer and use it in GitHub Desktop.
Need some refactoring...
public static Date getDateDDMMYYYY(final String dateString) {
final SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy");
try {
return formatter.parse(dateString, new ParsePosition(0));
} catch (NullPointerException e) {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment