@@ -430,6 +430,10 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
430
430
"clippy::unused_collect" ,
431
431
"`collect` has been marked as #[must_use] in rustc and that covers all cases of this lint" ,
432
432
) ;
433
+ store. register_removed (
434
+ "clippy::into_iter_on_array" ,
435
+ "this lint has been uplifted to rustc and is now called `array_into_iter`" ,
436
+ ) ;
433
437
// end deprecated lints, do not remove this comment, it’s used in `update_lints`
434
438
435
439
// begin register lints, do not remove this comment, it’s used in `update_lints`
@@ -584,7 +588,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
584
588
& methods:: FLAT_MAP_IDENTITY ,
585
589
& methods:: GET_UNWRAP ,
586
590
& methods:: INEFFICIENT_TO_STRING ,
587
- & methods:: INTO_ITER_ON_ARRAY ,
588
591
& methods:: INTO_ITER_ON_REF ,
589
592
& methods:: ITER_CLONED_COLLECT ,
590
593
& methods:: ITER_NTH ,
@@ -1142,7 +1145,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1142
1145
LintId :: of( & methods:: FILTER_NEXT ) ,
1143
1146
LintId :: of( & methods:: FLAT_MAP_IDENTITY ) ,
1144
1147
LintId :: of( & methods:: INEFFICIENT_TO_STRING ) ,
1145
- LintId :: of( & methods:: INTO_ITER_ON_ARRAY ) ,
1146
1148
LintId :: of( & methods:: INTO_ITER_ON_REF ) ,
1147
1149
LintId :: of( & methods:: ITER_CLONED_COLLECT ) ,
1148
1150
LintId :: of( & methods:: ITER_NTH ) ,
@@ -1481,7 +1483,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1481
1483
LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
1482
1484
LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
1483
1485
LintId :: of( & methods:: CLONE_DOUBLE_REF ) ,
1484
- LintId :: of( & methods:: INTO_ITER_ON_ARRAY ) ,
1485
1486
LintId :: of( & methods:: TEMPORARY_CSTRING_AS_PTR ) ,
1486
1487
LintId :: of( & methods:: UNINIT_ASSUMED_INIT ) ,
1487
1488
LintId :: of( & minmax:: MIN_MAX ) ,
0 commit comments