Skip to content

Commit 3c0ad9b

Browse files
committed
Remove lint registration accidentally added during rebase
1 parent ec37d4a commit 3c0ad9b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

clippy_lints/src/lib.rs

-5
Original file line numberDiff line numberDiff line change
@@ -951,10 +951,5 @@ pub fn register_lints(store: &mut rustc_lint::LintStore, conf: &'static Conf) {
951951
store.register_late_pass(move |_| Box::new(unused_trait_names::UnusedTraitNames::new(conf)));
952952
store.register_late_pass(|_| Box::new(manual_ignore_case_cmp::ManualIgnoreCaseCmp));
953953
store.register_late_pass(|_| Box::new(unnecessary_literal_bound::UnnecessaryLiteralBound));
954-
store.register_late_pass(|_| Box::new(trivial_map_over_range::TrivialMapOverRange));
955-
store.register_late_pass(|_| Box::new(map_with_unused_argument_over_ranges::MapWithUnusedArgumentOverRanges));
956-
store.register_late_pass(move |_| {
957-
Box::new(map_with_unused_argument_over_ranges::MapWithUnusedArgumentOverRanges::new(msrv()))
958-
});
959954
// add lints here, do not remove this comment, it's used in `new_lint`
960955
}

0 commit comments

Comments
 (0)