1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-28 00:40:05 +02:00

I should read javadoc properly.

This commit is contained in:
snowleo
2012-08-06 00:55:25 +02:00
parent 17ceb04541
commit e9f924e397

View File

@@ -124,16 +124,7 @@ public class EssentialsConf extends YamlConfiguration
channel.position(0); channel.position(0);
try try
{ {
int BUFFERSIZE = 1024; channel.read(buffer);
long left = configFile.length() % BUFFERSIZE;
for (long i = 0; i < configFile.length() - left; i += BUFFERSIZE)
{
channel.read(buffer, BUFFERSIZE);
}
if (left > 0)
{
channel.read(buffer, left);
}
retry = 0; retry = 0;
} }
catch (ClosedByInterruptException ex) catch (ClosedByInterruptException ex)