Skip to content

Commit

Permalink
fix bug timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
haiko committed Apr 28, 2018
1 parent 7380605 commit 7ea9fb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public void deriveLandingTime() {
DateTimeZone dtz = DateTimeZone.forTimeZone(tz);
DateTime dt = new DateTime(this.scheduleDate);
dt.withZone(dtz);
dt.plus(new Period(this.scheduleTime.getHourOfDay(), this.scheduleTime.getMinuteOfHour(),
dt = dt.plus(new Period(this.scheduleTime.getHourOfDay(), this.scheduleTime.getMinuteOfHour(),
this.scheduleTime.getSecondOfMinute(), this.scheduleTime.getMillisOfSecond()));

this.scheduleDateTime = dt;
Expand Down

0 comments on commit 7ea9fb2

Please sign in to comment.