Formatting tweaks

This commit is contained in:
Chris Hennick 2023-05-01 16:51:55 -07:00
parent 28f045e17e
commit 2f4acd3900
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -128,8 +128,9 @@ impl FileOptions {
self
}
/// Changes the compression method to Deflate if it would otherwise be no compression.
#[must_use]
#[cfg(fuzzing)]
/// Changes the compression method to the default if it would otherwise be no compression.
pub fn force_compression(mut self) -> FileOptions {
if self.compression_method == CompressionMethod::Stored {
self.compression_method = CompressionMethod::Deflated;