mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-08-04 13:35:27 +02:00
clean up if/else formatting
This commit is contained in:
@@ -73,8 +73,7 @@ public class ZipLibrary {
|
||||
for (File source : sources) {
|
||||
if (source.isDirectory()) {
|
||||
zipDir(zipOut, "", source);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
zipFile(zipOut, "", source);
|
||||
}
|
||||
}
|
||||
@@ -104,8 +103,7 @@ public class ZipLibrary {
|
||||
for (File source : files) {
|
||||
if (source.isDirectory()) {
|
||||
zipDir(zos, path, source);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
zipFile(zos, path, source);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user