Removed the default zip comment for ZipWriter to an empty string

This commit is contained in:
Jeremy Aube 2020-06-21 11:38:39 -04:00
parent a2ba5fb280
commit 061a58cf7d

View file

@ -176,7 +176,7 @@ impl<W: Write + io::Seek> ZipWriter<W> {
files: Vec::new(),
stats: Default::default(),
writing_to_file: false,
comment: "zip-rs".into(),
comment: "".into(),
}
}