From 74d071a0fd8709c94be3d6623395580b0d8f8fcb Mon Sep 17 00:00:00 2001 From: Brandon Maier Date: Wed, 6 Mar 2024 18:54:37 -0600 Subject: [PATCH] remove commented out code --- src/command_pool.rs | 1 - src/main.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/command_pool.rs b/src/command_pool.rs index 02c341f..51cb05e 100644 --- a/src/command_pool.rs +++ b/src/command_pool.rs @@ -1,5 +1,4 @@ use tokio::process::Command; -//use std::collections::VecDeque; use tokio::task::JoinSet; use std::process::Output; use tokio::sync::Semaphore; diff --git a/src/main.rs b/src/main.rs index fc05e05..757f879 100644 --- a/src/main.rs +++ b/src/main.rs @@ -60,7 +60,6 @@ async fn main() -> Result<()> { // Run Shellcheck commands and collect output let mut comments = ShellcheckJson1::default(); while let Some((files, output)) = pool.next().await { - //println!("files: {:#?}", files); let output = output.expect("Internal command error running Shellcheck"); if !output.stderr.is_empty() { if files.len() > 1 {