diff options
author | Kevin DeLorey <[email protected]> | 2020-02-11 13:10:06 +0000 |
---|---|---|
committer | Kevin DeLorey <[email protected]> | 2020-02-11 13:10:06 +0000 |
commit | b4429a9d64759f4aee3cb48cb938da021a24b7b5 (patch) | |
tree | ad65821638728fea78536b4efe493131710bb8b9 /crates/ra_assists | |
parent | ca43bb3ff787c17173a2a5d18f55eabb1bc5136b (diff) |
Fixed warning generated after refactoring.
Diffstat (limited to 'crates/ra_assists')
-rw-r--r-- | crates/ra_assists/src/handlers/add_missing_impl_members.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_assists/src/handlers/add_missing_impl_members.rs b/crates/ra_assists/src/handlers/add_missing_impl_members.rs index 495493a52..4c937b154 100644 --- a/crates/ra_assists/src/handlers/add_missing_impl_members.rs +++ b/crates/ra_assists/src/handlers/add_missing_impl_members.rs | |||
@@ -1,4 +1,4 @@ | |||
1 | use hir::{db::HirDatabase, HasSource, InFile}; | 1 | use hir::{HasSource, InFile}; |
2 | use ra_syntax::{ | 2 | use ra_syntax::{ |
3 | ast::{self, edit, make, AstNode, NameOwner}, | 3 | ast::{self, edit, make, AstNode, NameOwner}, |
4 | SmolStr, | 4 | SmolStr, |