mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 05:36:46 +01:00
Useless else statement.
This commit is contained in:
parent
bc51505150
commit
7e241e3993
@ -345,23 +345,23 @@ 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];
|
||||||
final FileOutputStream fos = new FileOutputStream(destinationFilePath);
|
final FileOutputStream fos = new FileOutputStream(destinationFilePath);
|
||||||
final BufferedOutputStream bos = new BufferedOutputStream(fos, Updater.BYTE_SIZE);
|
final BufferedOutputStream bos = new BufferedOutputStream(fos, Updater.BYTE_SIZE);
|
||||||
while ((b = bis.read(buffer, 0, Updater.BYTE_SIZE)) != -1) {
|
while ((b = bis.read(buffer, 0, Updater.BYTE_SIZE)) != -1) {
|
||||||
bos.write(buffer, 0, b);
|
bos.write(buffer, 0, b);
|
||||||
}
|
|
||||||
bos.flush();
|
|
||||||
bos.close();
|
|
||||||
bis.close();
|
|
||||||
final String name = destinationFilePath.getName();
|
|
||||||
if (name.endsWith(".jar") && this.pluginFile(name)) {
|
|
||||||
destinationFilePath.renameTo(new File(this.plugin.getDataFolder().getParent(), this.updateFolder + "/" + name));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
bos.flush();
|
||||||
|
bos.close();
|
||||||
|
bis.close();
|
||||||
|
final String name = destinationFilePath.getName();
|
||||||
|
if (name.endsWith(".jar") && this.pluginFile(name)) {
|
||||||
|
destinationFilePath.renameTo(new File(this.plugin.getDataFolder().getParent(), this.updateFolder + "/" + name));
|
||||||
|
}
|
||||||
|
|
||||||
entry = null;
|
entry = null;
|
||||||
destinationFilePath = null;
|
destinationFilePath = null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user