From c433f8b475db4e9dd07b5889e24785f0a54fad01 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Mon, 13 Feb 2023 08:53:26 +0100 Subject: [PATCH] uniq: remove suppression of use_self lint --- src/uu/uniq/src/uniq.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/uu/uniq/src/uniq.rs b/src/uu/uniq/src/uniq.rs index cbbd988cb..7275e8877 100644 --- a/src/uu/uniq/src/uniq.rs +++ b/src/uu/uniq/src/uniq.rs @@ -5,9 +5,6 @@ // * For the full copyright and license information, please view the LICENSE // * file that was distributed with this source code. -// TODO remove this when https://github.com/rust-lang/rust-clippy/issues/6902 is fixed -#![allow(clippy::use_self)] - use clap::{crate_version, Arg, ArgAction, ArgMatches, Command}; use std::fs::File; use std::io::{self, stdin, stdout, BufRead, BufReader, BufWriter, Read, Write};