Unnamed repository; edit this file 'description' to name the repository.
Remove resolved FIXME
| -rw-r--r-- | crates/ide-db/src/imports/merge_imports.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ide-db/src/imports/merge_imports.rs b/crates/ide-db/src/imports/merge_imports.rs index bc2c2d0c0c..d63b239ff4 100644 --- a/crates/ide-db/src/imports/merge_imports.rs +++ b/crates/ide-db/src/imports/merge_imports.rs @@ -691,7 +691,6 @@ pub fn eq_attrs( attrs0: impl Iterator<Item = ast::Attr>, attrs1: impl Iterator<Item = ast::Attr>, ) -> bool { - // FIXME order of attributes should not matter let mut attrs0: Vec<_> = attrs0.map(|attr| attr.syntax().text().to_string()).collect(); let mut attrs1: Vec<_> = attrs1.map(|attr| attr.syntax().text().to_string()).collect(); attrs0.sort(); |