AsDisplay is no longer an unused import

Prior to PR 251, 2 traits were imported (DisplayAsDisplay, PathAsDisplay),
and in some cases only 1 would be used. Now it's 1 trait and is always
used.
This commit is contained in:
David Tolnay 2023-09-02 12:44:43 -07:00
parent 887c9fb3fc
commit 7566a29b2a
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -456,7 +456,6 @@ fn fields_pat(fields: &[Field]) -> TokenStream {
fn use_as_display(needs_as_display: bool) -> Option<TokenStream> {
if needs_as_display {
Some(quote! {
#[allow(unused_imports)]
use thiserror::__private::AsDisplay as _;
})
} else {