Remove resolved FIXME

This commit is contained in:
flora ~ 🏳️‍⚧️ ❤ 🦀
2026-02-15 10:47:49 +11:00
committed by GitHub
parent 5c13e0ced9
commit 3a8a3c74f2
@@ -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();