diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-03-23 16:44:28 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-23 16:44:28 +0000 |
commit | c220b340958c447b72330148e44f24c9204f84c2 (patch) | |
tree | e9ab2300f32cb8a03dd6558e57c36dbb4fd31cb3 /crates/ide_assists/src/handlers/add_missing_impl_members.rs | |
parent | c88129d5634e4ca9b856c07d48a8161c3c8ec3f5 (diff) | |
parent | e33959a8889104f6bda06755df9ade933aadcf4f (diff) |
Merge #8174
8174: Simplify code r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ide_assists/src/handlers/add_missing_impl_members.rs')
-rw-r--r-- | crates/ide_assists/src/handlers/add_missing_impl_members.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ide_assists/src/handlers/add_missing_impl_members.rs b/crates/ide_assists/src/handlers/add_missing_impl_members.rs index 63cea754d..0148635f9 100644 --- a/crates/ide_assists/src/handlers/add_missing_impl_members.rs +++ b/crates/ide_assists/src/handlers/add_missing_impl_members.rs | |||
@@ -3,9 +3,9 @@ use syntax::ast::{self, AstNode}; | |||
3 | 3 | ||
4 | use crate::{ | 4 | use crate::{ |
5 | assist_context::{AssistContext, Assists}, | 5 | assist_context::{AssistContext, Assists}, |
6 | utils::add_trait_assoc_items_to_impl, | 6 | utils::{ |
7 | utils::DefaultMethods, | 7 | add_trait_assoc_items_to_impl, filter_assoc_items, render_snippet, Cursor, DefaultMethods, |
8 | utils::{filter_assoc_items, render_snippet, Cursor}, | 8 | }, |
9 | AssistId, AssistKind, | 9 | AssistId, AssistKind, |
10 | }; | 10 | }; |
11 | 11 | ||