aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_assists/src/lib.rs
diff options
context:
space:
mode:
authorJoshua Warner <[email protected]>2021-06-05 23:29:29 +0100
committerJoshua Warner <[email protected]>2021-06-05 23:29:29 +0100
commit18f796a728806e5138708a7af00d6064ec251382 (patch)
treebfbdb2c523b82928d17d918fc1a6dbbb616c54b0 /crates/ide_assists/src/lib.rs
parentca9ffba0473cb32b06c01bc5d387e538d379f19e (diff)
Refactor to be just one assist
Diffstat (limited to 'crates/ide_assists/src/lib.rs')
-rw-r--r--crates/ide_assists/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/ide_assists/src/lib.rs b/crates/ide_assists/src/lib.rs
index d64233315..16af72927 100644
--- a/crates/ide_assists/src/lib.rs
+++ b/crates/ide_assists/src/lib.rs
@@ -186,7 +186,6 @@ mod handlers {
186 mod convert_iter_for_each_to_for; 186 mod convert_iter_for_each_to_for;
187 mod convert_into_to_from; 187 mod convert_into_to_from;
188 mod convert_tuple_struct_to_named_struct; 188 mod convert_tuple_struct_to_named_struct;
189 mod convert_tuple_variant_to_named_variant;
190 mod early_return; 189 mod early_return;
191 mod expand_glob_import; 190 mod expand_glob_import;
192 mod extract_function; 191 mod extract_function;
@@ -257,7 +256,6 @@ mod handlers {
257 convert_iter_for_each_to_for::convert_iter_for_each_to_for, 256 convert_iter_for_each_to_for::convert_iter_for_each_to_for,
258 convert_into_to_from::convert_into_to_from, 257 convert_into_to_from::convert_into_to_from,
259 convert_tuple_struct_to_named_struct::convert_tuple_struct_to_named_struct, 258 convert_tuple_struct_to_named_struct::convert_tuple_struct_to_named_struct,
260 convert_tuple_variant_to_named_variant::convert_tuple_variant_to_named_variant,
261 early_return::convert_to_guarded_return, 259 early_return::convert_to_guarded_return,
262 expand_glob_import::expand_glob_import, 260 expand_glob_import::expand_glob_import,
263 extract_struct_from_enum_variant::extract_struct_from_enum_variant, 261 extract_struct_from_enum_variant::extract_struct_from_enum_variant,