From 4bf0aa77a8cc5b99b2ba5836037033c3aec5f3b4 Mon Sep 17 00:00:00 2001 From: Jan Starke Date: Mon, 15 Apr 2024 19:59:13 +0200 Subject: [PATCH] scan for hivebins --- src/bin/hivescan/hivescanapplication.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bin/hivescan/hivescanapplication.rs b/src/bin/hivescan/hivescanapplication.rs index 9e2826d..cc5fefd 100644 --- a/src/bin/hivescan/hivescanapplication.rs +++ b/src/bin/hivescan/hivescanapplication.rs @@ -5,7 +5,6 @@ use dfir_toolkit::common::bodyfile::Bodyfile3Line; use indicatif::{ProgressBar, ProgressStyle}; use nt_hive2::*; use std::fs::File; -use std::time::Duration; use crate::regtreebuilder::RegTreeBuilder; @@ -34,7 +33,6 @@ impl HiveScanApplication { .unwrap(); let bar = ProgressBar::new(self.hive.as_ref().unwrap().data_size().into()); bar.set_style(progress_style); - bar.enable_steady_tick(Duration::from_millis(100)); bar.set_message("scanning cells"); let builder = RegTreeBuilder::from_hive(self.hive.take().unwrap(), |p| bar.set_position(p));