summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/settings/Backup.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/net/ess3/settings/Backup.java')
-rw-r--r--Essentials/src/net/ess3/settings/Backup.java16
1 files changed, 6 insertions, 10 deletions
diff --git a/Essentials/src/net/ess3/settings/Backup.java b/Essentials/src/net/ess3/settings/Backup.java
index bbdef7bdf..0433f1242 100644
--- a/Essentials/src/net/ess3/settings/Backup.java
+++ b/Essentials/src/net/ess3/settings/Backup.java
@@ -18,17 +18,14 @@ public class Backup implements StorageObject
@Comment("Add a command that backups your data, e.g. 'rdiff-backup World1 backups/World1'")
private String command;
@Comment(
- {
- "Runs these commands before a backup.", "This will run every time time (in minutes) you specify in the interval setting.",
- "ex: say \"Hello World\" will make the server say Hello World"
- })
+ "Runs these commands before a backup.\n"
+ + "This will run every time time (in minutes) you specify in the interval setting.\n"
+ + "ex: say \"Hello World\" will make the server say Hello World")
private List<String> commandsBeforeBackup;
-
@Comment(
- {
- "Runs these commands after a backup.", "This will run every time time (in minutes) you specify in the interval setting.",
- "ex: say \"Hello World\" will make the server say Hello World"
- })
+ "Runs these commands after a backup.\n"
+ + "This will run every time time (in minutes) you specify in the interval setting.\n"
+ + "ex: say \"Hello World\" will make the server say Hello World")
private List<String> commandsAfterBackup;
public Backup()
@@ -49,5 +46,4 @@ public class Backup implements StorageObject
{
return commandsAfterBackup == null ? Collections.<String>emptyList() : Collections.unmodifiableList(commandsAfterBackup);
}
-
}