Skip to content

Commit

Permalink
FINERACT-826 Remove unused getTimeZone
Browse files Browse the repository at this point in the history
  • Loading branch information
percyashu authored and vorburger committed Apr 18, 2020
1 parent 005cc21 commit 83899c2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ public static DateTimeZone getDateTimeZoneOfTenant() {
DateTimeZone zone = null;
if (tenant != null) {
zone = DateTimeZone.forID(tenant.getTimezoneId());
TimeZone.getTimeZone(tenant.getTimezoneId());
}
return zone;
}
Expand Down Expand Up @@ -110,4 +109,4 @@ public static String formatToSqlDate(final Date date) {
public static boolean isDateInTheFuture(final LocalDate localDate) {
return localDate.isAfter(getLocalDateOfTenant());
}
}
}

0 comments on commit 83899c2

Please sign in to comment.