mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-25 02:04:44 +02:00
Update code style
This commit is contained in:
@ -35,8 +35,7 @@ public class ZipLibrary {
|
||||
if (BACKUP_DIR.mkdir()) {
|
||||
mcMMO.p.debug("Created Backup Directory.");
|
||||
}
|
||||
}
|
||||
catch (Exception e) {
|
||||
} catch (Exception e) {
|
||||
mcMMO.p.getLogger().severe(e.toString());
|
||||
}
|
||||
|
||||
@ -68,8 +67,7 @@ public class ZipLibrary {
|
||||
for (File source : sources) {
|
||||
if (source.isDirectory()) {
|
||||
zipDir(zipOut, "", source);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
zipFile(zipOut, "", source);
|
||||
}
|
||||
}
|
||||
@ -99,8 +97,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