I have a legacy Java application, where its performance bottle neck is due to the usage of Calendar. As Calendar is a mutable object, we have to clone every-time we get it.
public Calendar getCalendar() {
return (Calendar)calendar.clone();
}
We also discover that in our application, we didn't use the time zone information at all. I was wondering, should we just re-factor the code to
public long getTimestamp() {
return timestamp;
}
We will only turn the timestamp into Calendar or Joda DateTime, when we need to perform date/time arithmetic operation.
Or to prevent unforeseen future, should we use Joda DateTime?
public DateTime getDateTime() {
return dateTime;
}