summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-10-19 18:17:19 +0200
committersnowleo <schneeleo@gmail.com>2011-10-19 18:17:19 +0200
commitb512878223cfcd2b26d47b51f0b0591124a81b21 (patch)
tree53f42869552da3cf6bcde1f9366b384ef45c489e
parent0d0111658df94bf552991682aefa3cc031084fc9 (diff)
downloadEssentials-b512878223cfcd2b26d47b51f0b0591124a81b21.tar
Essentials-b512878223cfcd2b26d47b51f0b0591124a81b21.tar.gz
Essentials-b512878223cfcd2b26d47b51f0b0591124a81b21.tar.lz
Essentials-b512878223cfcd2b26d47b51f0b0591124a81b21.tar.xz
Essentials-b512878223cfcd2b26d47b51f0b0591124a81b21.zip
Cleanup
-rw-r--r--Essentials/src/com/earth2me/essentials/settings/Settings.java50
1 files changed, 25 insertions, 25 deletions
diff --git a/Essentials/src/com/earth2me/essentials/settings/Settings.java b/Essentials/src/com/earth2me/essentials/settings/Settings.java
index 013a235f1..890bfef4e 100644
--- a/Essentials/src/com/earth2me/essentials/settings/Settings.java
+++ b/Essentials/src/com/earth2me/essentials/settings/Settings.java
@@ -12,47 +12,47 @@ public class Settings extends StorageObject
{
@Comment(
{
- "############################################################",
- "# +------------------------------------------------------+ #",
- "# | General Settings | #",
- "# +------------------------------------------------------+ #",
- "############################################################"
+ "##########################################################",
+ "+------------------------------------------------------+ #",
+ "| General Settings | #",
+ "+------------------------------------------------------+ #",
+ "##########################################################"
})
private General general = new General();
@Comment(
{
- "############################################################",
- "# +------------------------------------------------------+ #",
- "# | Chat Settings | #",
- "# +------------------------------------------------------+ #",
- "############################################################"
+ "##########################################################",
+ "+------------------------------------------------------+ #",
+ "| Chat Settings | #",
+ "+------------------------------------------------------+ #",
+ "##########################################################"
})
private Chat chat = new Chat();
@Comment(
{
- "############################################################",
- "# +------------------------------------------------------+ #",
- "# | Economy Settings | #",
- "# +------------------------------------------------------+ #",
- "############################################################"
+ "##########################################################",
+ "+------------------------------------------------------+ #",
+ "| Economy Settings | #",
+ "+------------------------------------------------------+ #",
+ "##########################################################"
})
private Economy economy = new Economy();
@Comment(
{
- "############################################################",
- "# +------------------------------------------------------+ #",
- "# | Commands Settings | #",
- "# +------------------------------------------------------+ #",
- "############################################################"
+ "##########################################################",
+ "+------------------------------------------------------+ #",
+ "| Commands Settings | #",
+ "+------------------------------------------------------+ #",
+ "##########################################################"
})
private Commands commands = new Commands();
@Comment(
{
- "############################################################",
- "# +------------------------------------------------------+ #",
- "# | Group Settings | #",
- "# +------------------------------------------------------+ #",
- "############################################################"
+ "##########################################################",
+ "+------------------------------------------------------+ #",
+ "| Group Settings | #",
+ "+------------------------------------------------------+ #",
+ "##########################################################"
})
private Groups groups = new Groups();
}