Closed a possible resource leak, updated README.md to point to DBO instead of Github's deprecated downloads section
This commit is contained in:
@ -115,7 +115,6 @@ public class EssentialsFeatures
|
||||
|
||||
private static class LocalChatListener implements Listener
|
||||
{
|
||||
@SuppressWarnings("unused")
|
||||
@EventHandler(priority = EventPriority.NORMAL)
|
||||
public void onPlayerChat(EssentialsLocalChatEvent event)
|
||||
{
|
||||
|
@ -94,6 +94,7 @@ public class DiscUtil
|
||||
ReadableByteChannel rbc = Channels.newChannel(url.openStream());
|
||||
FileOutputStream fos = new FileOutputStream(file);
|
||||
fos.getChannel().transferFrom(rbc, 0, 1 << 24);
|
||||
fos.close();
|
||||
return true;
|
||||
}
|
||||
catch (Exception e)
|
||||
|
Reference in New Issue
Block a user