@@ -142,7 +142,7 @@ public class DateUtils extends org.apache.commons.lang3.time.DateUtils
*/
public static int differentDaysByMillisecond(Date date1, Date date2)
{
- return Math.abs((int) ((date2.getTime() - date1.getTime()) / (1000 * 3600 * 24)));
+ return Math.abs((int) ((date1.getTime() - date2.getTime()) / (1000 * 3600 * 24)));
}
/**