Skip to content

Commit

Permalink
Whoops, submodule change was actually valid - undoing fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
ndrewxie committed Jun 8, 2023
1 parent 4ae250b commit 3f324a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/clippy/clippy_lints/src/wildcard_imports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ impl LateLintPass<'_> for WildcardImports {
)
};

let mut imports = used_imports.items().map(ToString::to_string).into_sorted_stable_ord(false);
let mut imports = used_imports.items().map(ToString::to_string).into_sorted_stable_ord();
let imports_string = if imports.len() == 1 {
imports.pop().unwrap()
} else if braced_glob {
Expand Down

0 comments on commit 3f324a8

Please sign in to comment.