Merge pull request #11444 from janmadle/patch-1

fixing missing parameter
This commit is contained in:
Loredana Crusoveanu 2022-01-03 17:00:35 +02:00 committed by GitHub
commit c9fd18c98f
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ public class ZipSingleFile {
if (!fileToAdd.exists()) {
fileToAdd.createNewFile();
}
zipFile.addFile(fileToAdd);
zipFile.addFile(fileToAdd, zipParameters);
zipFile.close();
}
}