@@ -145,7 +145,6 @@ mod consts;
145145mod utils;
146146
147147// begin lints modules, do not remove this comment, it’s used in `update_lints`
148- pub mod and_then_some;
149148pub mod approx_const;
150149pub mod arithmetic;
151150pub mod assertions_on_constants;
@@ -601,7 +600,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
601600 reg. register_late_lint_pass ( box integer_division:: IntegerDivision ) ;
602601 reg. register_late_lint_pass ( box inherent_to_string:: InherentToString ) ;
603602 reg. register_late_lint_pass ( box trait_bounds:: TraitBounds ) ;
604- reg. register_late_lint_pass ( box and_then_some:: AndThenSomeLint ) ;
605603
606604 reg. register_lint_group ( "clippy::restriction" , Some ( "clippy_restriction" ) , vec ! [
607605 arithmetic:: FLOAT_ARITHMETIC ,
@@ -687,7 +685,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
687685 ] ) ;
688686
689687 reg. register_lint_group ( "clippy::all" , Some ( "clippy" ) , vec ! [
690- and_then_some:: OPTION_AND_THEN_SOME ,
691688 approx_const:: APPROX_CONSTANT ,
692689 assertions_on_constants:: ASSERTIONS_ON_CONSTANTS ,
693690 assign_ops:: ASSIGN_OP_PATTERN ,
@@ -1007,7 +1004,6 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry<'_>, conf: &Conf) {
10071004 ] ) ;
10081005
10091006 reg. register_lint_group ( "clippy::complexity" , Some ( "clippy_complexity" ) , vec ! [
1010- and_then_some:: OPTION_AND_THEN_SOME ,
10111007 assign_ops:: MISREFACTORED_ASSIGN_OP ,
10121008 attrs:: DEPRECATED_CFG_ATTR ,
10131009 booleans:: NONMINIMAL_BOOL ,
0 commit comments