From c9137a807572ffed8f73b420f09d15417555c770 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Mon, 15 Apr 2024 15:16:21 +0200 Subject: [PATCH] od: remove print_width_block field of OutputInfo --- src/uu/od/src/output_info.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/uu/od/src/output_info.rs b/src/uu/od/src/output_info.rs index 993bba329..163292172 100644 --- a/src/uu/od/src/output_info.rs +++ b/src/uu/od/src/output_info.rs @@ -38,8 +38,6 @@ pub struct OutputInfo { /// The number of bytes in a block. (This is the size of the largest datatype in `spaced_formatters`.) pub byte_size_block: usize, - /// The width of a block in human readable format. (The size of the largest format.) - pub print_width_block: usize, /// All formats. spaced_formatters: Vec, /// determines if duplicate output lines should be printed, or @@ -78,7 +76,6 @@ impl OutputInfo { byte_size_line: line_bytes, print_width_line, byte_size_block, - print_width_block, spaced_formatters, output_duplicates, }