Various code cleanup.

This commit is contained in:
2023-04-10 19:17:18 +02:00
parent ba896e689a
commit ff954a3903
5 changed files with 7 additions and 7 deletions

View File

@@ -310,9 +310,7 @@ public abstract class BackupProcess implements Comparable<BackupProcess>, Runnab
return false;
if (!isDirty())
return false;
if (getNext() > System.currentTimeMillis())
return false;
return true;
return getNext() <= System.currentTimeMillis();
}