fix(clippy): remove unnecessary `to_string()`

This commit is contained in:
winstxnhdw 2024-06-27 05:03:23 +08:00
parent cf48f48ae9
commit 63ce5e54b0
No known key found for this signature in database
GPG Key ID: 28C6693A1379DAE9
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ impl FormatCache {
let mut p = self.formats_base.clone();
p.push(format!(
"{}-{}-{}.fmt",
self.bundle_digest.to_string(),
self.bundle_digest,
stem,
crate::FORMAT_SERIAL
));