Skip to content

Commit

Permalink
remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
blmaier committed Mar 7, 2024
1 parent 39cc6b4 commit 74d071a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/command_pool.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use tokio::process::Command;
//use std::collections::VecDeque;
use tokio::task::JoinSet;
use std::process::Output;
use tokio::sync::Semaphore;
Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 74d071a

Please sign in to comment.