From 061a58cf7dc5f83c9324ac887229a4ee8b7448ac Mon Sep 17 00:00:00 2001 From: Jeremy Aube Date: Sun, 21 Jun 2020 11:38:39 -0400 Subject: [PATCH] Removed the default zip comment for ZipWriter to an empty string --- src/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index a7ee92c7..2598f196 100644 --- a/src/write.rs +++ b/src/write.rs @@ -176,7 +176,7 @@ impl ZipWriter { files: Vec::new(), stats: Default::default(), writing_to_file: false, - comment: "zip-rs".into(), + comment: "".into(), } }