Skip to content

Commit

Permalink
fix: delete unused verbose options
Browse files Browse the repository at this point in the history
  • Loading branch information
moz-sec committed Jul 22, 2024
1 parent 9afd000 commit 19fe03d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/extractor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,9 @@ pub fn create_extractor(file: &PathBuf) -> Result<Box<dyn Extractor>, Box<dyn Er
}
}

#[derive(Debug)]
pub struct ExtractorOpts {
pub dest: PathBuf,
pub use_archive_name_dir: bool,
pub verbose: bool,
}

impl ExtractorOpts {
Expand All @@ -43,7 +41,6 @@ impl ExtractorOpts {
ExtractorOpts {
dest: d.unwrap_or_else(|| PathBuf::from(".")),
use_archive_name_dir: false,
verbose: args.verbose,
}
}

Expand Down

0 comments on commit 19fe03d

Please sign in to comment.