Skip to content

Commit 3bdb68d

Browse files
committed
Clean up commented-out lines
1 parent 5f24ff0 commit 3bdb68d

File tree

1 file changed

+1
-4
lines changed
  • crates/ide_diagnostics/src

1 file changed

+1
-4
lines changed

crates/ide_diagnostics/src/lib.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
//! don't yet have a great pattern for how to do them properly.
2525
2626
mod handlers {
27-
// pub(crate) mod add_reference_here;
2827
pub(crate) mod break_outside_of_loop;
2928
pub(crate) mod inactive_code;
3029
pub(crate) mod incorrect_case;
@@ -34,18 +33,16 @@ mod handlers {
3433
pub(crate) mod mismatched_arg_count;
3534
pub(crate) mod missing_fields;
3635
pub(crate) mod missing_match_arms;
37-
// pub(crate) mod missing_ok_or_some_in_tail_expr;
3836
pub(crate) mod missing_unsafe;
3937
pub(crate) mod no_such_field;
40-
// pub(crate) mod remove_this_semicolon;
4138
pub(crate) mod replace_filter_map_next_with_find_map;
39+
pub(crate) mod type_mismatch;
4240
pub(crate) mod unimplemented_builtin_macro;
4341
pub(crate) mod unresolved_extern_crate;
4442
pub(crate) mod unresolved_import;
4543
pub(crate) mod unresolved_macro_call;
4644
pub(crate) mod unresolved_module;
4745
pub(crate) mod unresolved_proc_macro;
48-
pub(crate) mod type_mismatch;
4946

5047
// The handlers below are unusual, the implement the diagnostics as well.
5148
pub(crate) mod field_shorthand;

0 commit comments

Comments
 (0)