Skip to content

Commit

Permalink
Remove superflous comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dr0i committed Nov 10, 2023
1 parent f6fc433 commit 1e8bba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/apps/ConvertUpdates.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private static void backup(File source, ZonedDateTime start, ZonedDateTime end)
}

private static ZonedDateTime addMinutes(ZonedDateTime start, ZonedDateTime end, int intervalSize) {
ZonedDateTime endDate = start.plusMinutes(intervalSize); //TODO
ZonedDateTime endDate = start.plusMinutes(intervalSize);
return end.
isBefore(endDate) ? end : endDate;
}
Expand Down

0 comments on commit 1e8bba8

Please sign in to comment.