-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
When using the constructor:
ZipParameters zp = new ZipParameters(false, (percent, currentFile) -> { System.out.println(String.format("%f, done %s.", percent, currentFile)); });
and then calling
TinyZip.zip(zipDestPath, zp, srcFilePath);
The resulting zip file is empty. But if I use the constructor that only takes a BiConsumer, e.x:
ZipParameters zp = new ZipParameters((percent, currentFile) -> { System.out.println(String.format("%f, done %s.", percent, currentFile)); });
That works just fine.
Metadata
Metadata
Assignees
Labels
No labels