@@ -193,7 +193,6 @@ mod casts;
193193mod checked_conversions;
194194mod cognitive_complexity;
195195mod collapsible_if;
196- mod collapsible_match;
197196mod comparison_chain;
198197mod copies;
199198mod copy_iterator;
@@ -281,17 +280,13 @@ mod main_recursion;
281280mod manual_assert;
282281mod manual_async_fn;
283282mod manual_bits;
284- mod manual_map;
285283mod manual_non_exhaustive;
286284mod manual_ok_or;
287285mod manual_strip;
288- mod manual_unwrap_or;
289286mod map_clone;
290287mod map_err_ignore;
291288mod map_unit_fn;
292- mod match_on_vec_items;
293289mod match_result_ok;
294- mod match_str_case_mismatch;
295290mod matches;
296291mod mem_forget;
297292mod mem_replace;
@@ -372,7 +367,6 @@ mod self_named_constructors;
372367mod semicolon_if_nothing_returned;
373368mod serde_api;
374369mod shadow;
375- mod significant_drop_in_scrutinee;
376370mod single_char_lifetime_names;
377371mod single_component_path_imports;
378372mod size_of_in_element_count;
@@ -391,7 +385,6 @@ mod trailing_empty_array;
391385mod trait_bounds;
392386mod transmute;
393387mod transmuting_null;
394- mod try_err;
395388mod types;
396389mod undocumented_unsafe_blocks;
397390mod unicode;
@@ -569,7 +562,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
569562 store. register_late_pass ( || Box :: new ( len_zero:: LenZero ) ) ;
570563 store. register_late_pass ( || Box :: new ( attrs:: Attributes ) ) ;
571564 store. register_late_pass ( || Box :: new ( blocks_in_if_conditions:: BlocksInIfConditions ) ) ;
572- store. register_late_pass ( || Box :: new ( collapsible_match:: CollapsibleMatch ) ) ;
573565 store. register_late_pass ( || Box :: new ( unicode:: Unicode ) ) ;
574566 store. register_late_pass ( || Box :: new ( uninit_vec:: UninitVec ) ) ;
575567 store. register_late_pass ( || Box :: new ( unit_hash:: UnitHash ) ) ;
@@ -707,7 +699,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
707699 ) ;
708700 store. register_late_pass ( move || Box :: new ( pass_by_ref_or_value) ) ;
709701 store. register_late_pass ( || Box :: new ( ref_option_ref:: RefOptionRef ) ) ;
710- store. register_late_pass ( || Box :: new ( try_err:: TryErr ) ) ;
711702 store. register_late_pass ( || Box :: new ( bytecount:: ByteCount ) ) ;
712703 store. register_late_pass ( || Box :: new ( infinite_iter:: InfiniteIter ) ) ;
713704 store. register_late_pass ( || Box :: new ( inline_fn_without_body:: InlineFnWithoutBody ) ) ;
@@ -819,7 +810,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
819810 store. register_late_pass ( || Box :: new ( if_not_else:: IfNotElse ) ) ;
820811 store. register_late_pass ( || Box :: new ( equatable_if_let:: PatternEquality ) ) ;
821812 store. register_late_pass ( || Box :: new ( mut_mutex_lock:: MutMutexLock ) ) ;
822- store. register_late_pass ( || Box :: new ( match_on_vec_items:: MatchOnVecItems ) ) ;
823813 store. register_late_pass ( || Box :: new ( manual_async_fn:: ManualAsyncFn ) ) ;
824814 store. register_late_pass ( || Box :: new ( vec_resize_to_zero:: VecResizeToZero ) ) ;
825815 store. register_late_pass ( || Box :: new ( panic_in_result_fn:: PanicInResultFn ) ) ;
@@ -837,7 +827,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
837827 store. register_late_pass ( || Box :: new ( repeat_once:: RepeatOnce ) ) ;
838828 store. register_late_pass ( || Box :: new ( unwrap_in_result:: UnwrapInResult ) ) ;
839829 store. register_late_pass ( || Box :: new ( self_assignment:: SelfAssignment ) ) ;
840- store. register_late_pass ( || Box :: new ( manual_unwrap_or:: ManualUnwrapOr ) ) ;
841830 store. register_late_pass ( || Box :: new ( manual_ok_or:: ManualOkOr ) ) ;
842831 store. register_late_pass ( || Box :: new ( float_equality_without_abs:: FloatEqualityWithoutAbs ) ) ;
843832 store. register_late_pass ( || Box :: new ( semicolon_if_nothing_returned:: SemicolonIfNothingReturned ) ) ;
@@ -856,7 +845,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
856845 } ) ;
857846 store. register_late_pass ( || Box :: new ( redundant_slicing:: RedundantSlicing ) ) ;
858847 store. register_late_pass ( || Box :: new ( from_str_radix_10:: FromStrRadix10 ) ) ;
859- store. register_late_pass ( || Box :: new ( manual_map:: ManualMap ) ) ;
860848 store. register_late_pass ( move || Box :: new ( if_then_some_else_none:: IfThenSomeElseNone :: new ( msrv) ) ) ;
861849 store. register_late_pass ( || Box :: new ( bool_assert_comparison:: BoolAssertComparison ) ) ;
862850 store. register_early_pass ( move || Box :: new ( module_style:: ModStyle ) ) ;
@@ -882,7 +870,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
882870 ) )
883871 } ) ;
884872 store. register_late_pass ( move || Box :: new ( undocumented_unsafe_blocks:: UndocumentedUnsafeBlocks ) ) ;
885- store. register_late_pass ( || Box :: new ( match_str_case_mismatch:: MatchStrCaseMismatch ) ) ;
886873 store. register_late_pass ( move || Box :: new ( format_args:: FormatArgs ) ) ;
887874 store. register_late_pass ( || Box :: new ( trailing_empty_array:: TrailingEmptyArray ) ) ;
888875 store. register_early_pass ( || Box :: new ( octal_escapes:: OctalEscapes ) ) ;
@@ -895,7 +882,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
895882 store. register_late_pass ( || Box :: new ( default_union_representation:: DefaultUnionRepresentation ) ) ;
896883 store. register_early_pass ( || Box :: new ( doc_link_with_quotes:: DocLinkWithQuotes ) ) ;
897884 store. register_late_pass ( || Box :: new ( only_used_in_recursion:: OnlyUsedInRecursion ) ) ;
898- store. register_late_pass ( || Box :: new ( significant_drop_in_scrutinee:: SignificantDropInScrutinee ) ) ;
899885 let allow_dbg_in_tests = conf. allow_dbg_in_tests ;
900886 store. register_late_pass ( move || Box :: new ( dbg_macro:: DbgMacro :: new ( allow_dbg_in_tests) ) ) ;
901887 let cargo_ignore_publish = conf. cargo_ignore_publish ;
0 commit comments