@@ -129,7 +129,6 @@ pub mod let_if_seq;
129
129
pub mod lifetimes;
130
130
pub mod literal_representation;
131
131
pub mod loops;
132
- pub mod map_clone;
133
132
pub mod map_unit_fn;
134
133
pub mod matches;
135
134
pub mod mem_forget;
@@ -346,7 +345,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
346
345
reg. register_late_lint_pass ( box needless_borrow:: NeedlessBorrow ) ;
347
346
reg. register_late_lint_pass ( box needless_borrowed_ref:: NeedlessBorrowedRef ) ;
348
347
reg. register_late_lint_pass ( box no_effect:: Pass ) ;
349
- reg. register_late_lint_pass ( box map_clone:: Pass ) ;
350
348
reg. register_late_lint_pass ( box temporary_assignment:: Pass ) ;
351
349
reg. register_late_lint_pass ( box transmute:: Transmute ) ;
352
350
reg. register_late_lint_pass (
@@ -585,7 +583,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
585
583
loops:: WHILE_IMMUTABLE_CONDITION ,
586
584
loops:: WHILE_LET_LOOP ,
587
585
loops:: WHILE_LET_ON_ITERATOR ,
588
- map_clone:: MAP_CLONE ,
589
586
map_unit_fn:: OPTION_MAP_UNIT_FN ,
590
587
map_unit_fn:: RESULT_MAP_UNIT_FN ,
591
588
matches:: MATCH_AS_REF ,
@@ -745,7 +742,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
745
742
loops:: FOR_KV_MAP ,
746
743
loops:: NEEDLESS_RANGE_LOOP ,
747
744
loops:: WHILE_LET_ON_ITERATOR ,
748
- map_clone:: MAP_CLONE ,
749
745
matches:: MATCH_BOOL ,
750
746
matches:: MATCH_OVERLAPPING_ARM ,
751
747
matches:: MATCH_REF_PATS ,
0 commit comments