mirror of
https://github.com/Qortal/qortal.git
synced 2025-07-30 05:31:23 +00:00
remove zip best speed
This commit is contained in:
@@ -48,9 +48,7 @@ public class ZipUtils {
|
||||
FileOutputStream fileOutputStream = new FileOutputStream(destFilePath);
|
||||
|
||||
// 🔧 Use best speed compression level
|
||||
ZipOutputStream zipOutputStream = new ZipOutputStream(fileOutputStream);
|
||||
zipOutputStream.setLevel(java.util.zip.Deflater.BEST_SPEED);
|
||||
|
||||
ZipOutputStream zipOutputStream = new ZipOutputStream(fileOutputStream);
|
||||
ZipUtils.zip(sourceFile, enclosingFolderName, zipOutputStream, isSingleFile);
|
||||
|
||||
zipOutputStream.close();
|
||||
|
Reference in New Issue
Block a user