From a0ce7b1b78f109dc893bc34976c5b2a794289977 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Tue, 23 Sep 2025 21:02:59 -0700 Subject: [PATCH] Remove obsolete comment --- src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index c5818a187..77927bfbf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -403,8 +403,6 @@ fn diff_file( ) -> DiffResult { let (lhs_bytes, rhs_bytes) = read_files_or_die(lhs_path, rhs_path, missing_as_empty); - // Override here? Separate option or part of existing --override arg? - let (mut lhs_src, mut rhs_src) = match ( guess_content(&lhs_bytes, lhs_path, binary_overrides), guess_content(&rhs_bytes, rhs_path, binary_overrides),