diff options
| author | Mason Reed <mason@vector35.com> | 2026-02-17 20:30:44 -0800 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2026-02-23 00:09:44 -0800 |
| commit | 65c217ae27e6b0abe26d5baea40f2bab695a3651 (patch) | |
| tree | 162800e27c5dbe95eb187522b69dec936b4118bf /plugins/bntl_utils/src/command | |
| parent | 37008b7fa16837d04c1658868646cad681cbe035 (diff) | |
[BNTL Utils] Fix misc clippy lints
Diffstat (limited to 'plugins/bntl_utils/src/command')
| -rw-r--r-- | plugins/bntl_utils/src/command/create.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/bntl_utils/src/command/create.rs b/plugins/bntl_utils/src/command/create.rs index 41b5517a..5fa8c2be 100644 --- a/plugins/bntl_utils/src/command/create.rs +++ b/plugins/bntl_utils/src/command/create.rs @@ -7,7 +7,6 @@ use binaryninja::command::{Command, ProjectCommand}; use binaryninja::interaction::{Form, FormInputField, MessageBoxButtonSet, MessageBoxIcon}; use binaryninja::platform::Platform; use binaryninja::project::Project; -use binaryninja::types::TypeLibrary; use std::thread; pub struct CreateFromCurrentView; @@ -226,10 +225,10 @@ impl CreateFromProject { let background_task = BackgroundTask::new("Processing started...", true); new_processing_state_background_thread(background_task.clone(), processor.state()); - let data = processor.process_project(&project); + let data = processor.process_project(project); background_task.finish(); - let mut finalized_data = match data { + let finalized_data = match data { // Prune off empty type libraries, no need to save them. Ok(data) => data.finalized(&default_name), Err(err) => { |
