summaryrefslogtreecommitdiffstats
path: root/Essentials2Compat/src/com/earth2me/essentials
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2013-04-06 05:45:36 +0200
committersnowleo <schneeleo@gmail.com>2013-04-06 05:45:36 +0200
commit96ce6318360f05aaf703f4b71638dee8339c6f0a (patch)
treebbf6708133cb66ec21240ce0a429d1674002f6ba /Essentials2Compat/src/com/earth2me/essentials
parent2754da89cb0c0c060f5f4dd911c756ecad70484f (diff)
downloadEssentials-96ce6318360f05aaf703f4b71638dee8339c6f0a.tar
Essentials-96ce6318360f05aaf703f4b71638dee8339c6f0a.tar.gz
Essentials-96ce6318360f05aaf703f4b71638dee8339c6f0a.tar.lz
Essentials-96ce6318360f05aaf703f4b71638dee8339c6f0a.tar.xz
Essentials-96ce6318360f05aaf703f4b71638dee8339c6f0a.zip
Update default messages to latest from 2.9 branch
Diffstat (limited to 'Essentials2Compat/src/com/earth2me/essentials')
-rw-r--r--Essentials2Compat/src/com/earth2me/essentials/EssentialsConf.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/Essentials2Compat/src/com/earth2me/essentials/EssentialsConf.java b/Essentials2Compat/src/com/earth2me/essentials/EssentialsConf.java
index 936c790ae..ea43127d8 100644
--- a/Essentials2Compat/src/com/earth2me/essentials/EssentialsConf.java
+++ b/Essentials2Compat/src/com/earth2me/essentials/EssentialsConf.java
@@ -47,7 +47,7 @@ public class EssentialsConf extends YamlConfiguration
{
if (!configFile.getParentFile().mkdirs())
{
- LOGGER.log(Level.SEVERE, _("Failed to create config {0}", configFile.toString()));
+ LOGGER.log(Level.SEVERE, _("Failed to create config {0}.", configFile.toString()));
}
}
// This will delete files where the first character is 0. In most cases they are broken.
@@ -100,12 +100,12 @@ public class EssentialsConf extends YamlConfiguration
LOGGER.log(Level.INFO, _("Creating empty config: {0}", configFile.toString()));
if (!configFile.createNewFile())
{
- LOGGER.log(Level.SEVERE, _("Failed to create config {0}", configFile.toString()));
+ LOGGER.log(Level.SEVERE, _("Failed to create config {0}.", configFile.toString()));
}
}
catch (IOException ex)
{
- LOGGER.log(Level.SEVERE, _("Failed to create config {0}", configFile.toString()), ex);
+ LOGGER.log(Level.SEVERE, _("Failed to create config {0}.", configFile.toString()), ex);
}
}
}
@@ -190,7 +190,7 @@ public class EssentialsConf extends YamlConfiguration
}
catch (IOException ex)
{
- LOGGER.log(Level.SEVERE, _("Failed to write config {0}", configFile.toString()), ex);
+ LOGGER.log(Level.SEVERE, _("Failed to write config {0}.", configFile.toString()), ex);
}
finally
{
@@ -214,7 +214,7 @@ public class EssentialsConf extends YamlConfiguration
}
catch (IOException ex)
{
- LOGGER.log(Level.SEVERE, _("Failed to close config {0}", configFile.toString()), ex);
+ LOGGER.log(Level.SEVERE, _("Failed to close config {0}.", configFile.toString()), ex);
}
}
}