2.x
Szum123321 2022-11-05 13:30:45 +01:00
parent 53a5639373
commit fe25b1eec5
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ import java.util.Objects;
import java.util.stream.Stream; import java.util.stream.Stream;
/** /**
* Set of utility used for removing old backups * Utility used for removing old backups
*/ */
public class Cleanup { public class Cleanup {
private final static TextileLogger log = new TextileLogger(TextileBackup.MOD_NAME); private final static TextileLogger log = new TextileLogger(TextileBackup.MOD_NAME);

View File

@ -31,7 +31,7 @@ import java.time.Instant;
* The important thing to note: <br> * The important thing to note: <br>
* The decision of whether to do a backup or not is made at the time of scheduling, that is, whenever the <code>nextBackup</code> * The decision of whether to do a backup or not is made at the time of scheduling, that is, whenever the <code>nextBackup</code>
* flag is set. This means that even if doBackupsOnEmptyServer=false, the backup that was scheduled with players online will * flag is set. This means that even if doBackupsOnEmptyServer=false, the backup that was scheduled with players online will
* still go thorough. <br> * still go through. <br>
* It might appear as though there has been made a backup with no players online despite the config. This is the expected behaviour * It might appear as though there has been made a backup with no players online despite the config. This is the expected behaviour
* <br><br> * <br><br>
* Furthermore, it uses system time * Furthermore, it uses system time
@ -90,4 +90,4 @@ public class BackupScheduler {
} }
} }
} }
} }