Dear the Internet,
Please never write this code:
if (value == null || value.equals(“”)) {
d = new Date(0);
} else {
This is what I like to call “bug hiding”. Rarely does a person really mean 12/31/1969 when they pass you a null or blank value. That is all.