From f2dbd200aa39612f25eb58239f116823524c0de4 Mon Sep 17 00:00:00 2001 From: jfinkels Date: Thu, 9 Jan 2025 19:19:33 -0500 Subject: [PATCH] printf: remove allow(dead_code) directive Remove an `allow(dead_code)` directive that seems unnecessary. --- src/uu/printf/src/printf.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/uu/printf/src/printf.rs b/src/uu/printf/src/printf.rs index f86b7bd9f..f278affae 100644 --- a/src/uu/printf/src/printf.rs +++ b/src/uu/printf/src/printf.rs @@ -2,9 +2,6 @@ // // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. - -#![allow(dead_code)] - use clap::{crate_version, Arg, ArgAction, Command}; use std::io::stdout; use std::ops::ControlFlow;