From f850ec461baff99fc37ae0e2006bf77a24a47f84 Mon Sep 17 00:00:00 2001 From: Ryan Date: Tue, 5 Sep 2023 06:43:09 -0700 Subject: [PATCH] fmt --- crates/valence_nbt/src/binary/decode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/valence_nbt/src/binary/decode.rs b/crates/valence_nbt/src/binary/decode.rs index f6ad97af1..b735ffd75 100644 --- a/crates/valence_nbt/src/binary/decode.rs +++ b/crates/valence_nbt/src/binary/decode.rs @@ -28,7 +28,7 @@ pub fn from_binary(slice: &mut &[u8]) -> Result<(Compound, String)> { debug_assert_eq!(state.depth, 0); - Ok((root, root_name)) + Ok((root, root_name)) } /// Maximum recursion depth to prevent overflowing the call stack.