Useless else statement.

This commit is contained in:
GJ 2013-10-21 13:15:41 -04:00
parent bc51505150
commit 7e241e3993

View File

@ -345,7 +345,7 @@ public class Updater {
if (entry.isDirectory()) { if (entry.isDirectory()) {
continue; continue;
} }
else {
final BufferedInputStream bis = new BufferedInputStream(zipFile.getInputStream(entry)); final BufferedInputStream bis = new BufferedInputStream(zipFile.getInputStream(entry));
int b; int b;
final byte buffer[] = new byte[Updater.BYTE_SIZE]; final byte buffer[] = new byte[Updater.BYTE_SIZE];
@ -361,7 +361,7 @@ public class Updater {
if (name.endsWith(".jar") && this.pluginFile(name)) { if (name.endsWith(".jar") && this.pluginFile(name)) {
destinationFilePath.renameTo(new File(this.plugin.getDataFolder().getParent(), this.updateFolder + "/" + name)); destinationFilePath.renameTo(new File(this.plugin.getDataFolder().getParent(), this.updateFolder + "/" + name));
} }
}
entry = null; entry = null;
destinationFilePath = null; destinationFilePath = null;
} }