=== modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/calendar/DateTimeUnit.java' --- dhis-2/dhis-api/src/main/java/org/hisp/dhis/calendar/DateTimeUnit.java 2014-09-01 06:00:24 +0000 +++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/calendar/DateTimeUnit.java 2014-09-21 08:45:17 +0000 @@ -398,7 +398,7 @@ if ( month != that.month ) return false; if ( second != that.second ) return false; if ( year != that.year ) return false; - if ( !timeZone.equals( that.timeZone ) ) return false; + // if ( !timeZone.equals( that.timeZone ) ) return false; return true; } @@ -414,7 +414,7 @@ result = 31 * result + minute; result = 31 * result + second; result = 31 * result + millis; - result = 31 * result + timeZone.hashCode(); + // result = 31 * result + timeZone.hashCode(); return result; }