Skip to content

Commit

Permalink
spotless fix...
Browse files Browse the repository at this point in the history
Signed-off-by: Breno Faria <[email protected]>
  • Loading branch information
intrafindBreno committed Mar 2, 2022
1 parent 990ccb4 commit d3cfc2f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,7 @@ public long getFrom(TemporalAccessor temporal) {
if (instantSecondsInMillis >= 0) {
if (temporal.isSupported(ChronoField.NANO_OF_SECOND)) {
return instantSecondsInMillis + (temporal.getLong(ChronoField.NANO_OF_SECOND) / 1_000_000);
}
else {
} else {
return instantSecondsInMillis + temporal.getLong(ChronoField.MILLI_OF_SECOND);
}
} else { // negative timestamp
Expand Down

0 comments on commit d3cfc2f

Please sign in to comment.