Fix 1.88.0 clippy warnings

This commit is contained in:
Matthias Schiffer 2025-06-29 17:05:59 +02:00
parent ec4fd79864
commit 64e7375f2f
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
6 changed files with 14 additions and 17 deletions

View file

@ -21,7 +21,7 @@ fn main() -> Result<()> {
minedmap_nbt::region::from_file(args.file.as_path())?.foreach_chunk(
|coords, value: fastnbt::Value| {
println!("Chunk {:?}: {:#x?}", coords, value);
println!("Chunk {coords:?}: {value:#x?}");
Ok(())
},
)