@@ -1200,7 +1200,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1200
1200
LintId :: of( collapsible_if:: COLLAPSIBLE_IF ) ,
1201
1201
LintId :: of( collapsible_match:: COLLAPSIBLE_MATCH ) ,
1202
1202
LintId :: of( comparison_chain:: COMPARISON_CHAIN ) ,
1203
- LintId :: of( copies:: BRANCHES_SHARING_CODE ) ,
1204
1203
LintId :: of( copies:: IFS_SAME_COND ) ,
1205
1204
LintId :: of( copies:: IF_SAME_THEN_ELSE ) ,
1206
1205
LintId :: of( default :: FIELD_REASSIGN_WITH_DEFAULT ) ,
@@ -1589,7 +1588,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1589
1588
LintId :: of( booleans:: NONMINIMAL_BOOL ) ,
1590
1589
LintId :: of( casts:: CHAR_LIT_AS_U8 ) ,
1591
1590
LintId :: of( casts:: UNNECESSARY_CAST ) ,
1592
- LintId :: of( copies:: BRANCHES_SHARING_CODE ) ,
1593
1591
LintId :: of( double_comparison:: DOUBLE_COMPARISONS ) ,
1594
1592
LintId :: of( double_parens:: DOUBLE_PARENS ) ,
1595
1593
LintId :: of( duration_subsec:: DURATION_SUBSEC ) ,
@@ -1798,6 +1796,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1798
1796
store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
1799
1797
LintId :: of( attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
1800
1798
LintId :: of( cognitive_complexity:: COGNITIVE_COMPLEXITY ) ,
1799
+ LintId :: of( copies:: BRANCHES_SHARING_CODE ) ,
1801
1800
LintId :: of( disallowed_method:: DISALLOWED_METHOD ) ,
1802
1801
LintId :: of( disallowed_type:: DISALLOWED_TYPE ) ,
1803
1802
LintId :: of( fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
0 commit comments