From c26c9cf888d88e1022d300ce97e81ccc656c532f Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L. de Mello" Date: Thu, 18 Apr 2024 13:44:12 -0300 Subject: [PATCH] chore: remove dead code --- src/main.rs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/main.rs b/src/main.rs index b9386cc..4131471 100644 --- a/src/main.rs +++ b/src/main.rs @@ -204,25 +204,6 @@ fn main() { cli.surpress_errors, ); } - - /* - match cli.input.write(str.as_bytes()) { - Ok(_) => (), - Err(e) => { - cli::print_error( - cli::Error { - code: cli::ErrorCode::EIOWR, - description: format!("Error trying to write result to output's writer\n{e:#?}"), - fix: Some(String::from( - "Try to check if you have write permission to output file", - )), - url: None, - }, - cli.surpress_errors, - ); - } - } - */ } mod cli {