I just stumbled accross this method
public static Date getNowDate() {
final Calendar cal = new GregorianCalendar();
cal.setTime(new Date());
return cal.getTime();
}
which gets called like this:
getNowDate().getTime()
Is this any different from just calling
System.currentTimeMillis()
?