Merge branch 'master' of github.com:essentials/Essentials

This commit is contained in:
KHobbits 2012-03-23 13:53:08 +00:00
commit d0b94938e0

View File

@ -126,7 +126,7 @@ public class EssentialsConf extends YamlConfiguration
{
buffer.rewind();
data.clear();
LOGGER.log(Level.INFO, "File " + configFile.getAbsolutePath().toString() + "is not utf-8 encoded, trying " + Charset.defaultCharset().displayName());
LOGGER.log(Level.INFO, "File " + configFile.getAbsolutePath().toString() + " is not utf-8 encoded, trying " + Charset.defaultCharset().displayName());
decoder = Charset.defaultCharset().newDecoder();
result = decoder.decode(buffer, data, true);
if (result.isError())