Skip to content

Commit 3f324a8

Browse files
committed
Whoops, submodule change was actually valid - undoing fixup
1 parent 4ae250b commit 3f324a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/clippy/clippy_lints/src/wildcard_imports.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ impl LateLintPass<'_> for WildcardImports {
160160
)
161161
};
162162

163-
let mut imports = used_imports.items().map(ToString::to_string).into_sorted_stable_ord(false);
163+
let mut imports = used_imports.items().map(ToString::to_string).into_sorted_stable_ord();
164164
let imports_string = if imports.len() == 1 {
165165
imports.pop().unwrap()
166166
} else if braced_glob {

0 commit comments

Comments
 (0)