diff options
| author | mat <github@matdoes.dev> | 2021-12-19 13:07:54 -0600 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2021-12-19 13:07:54 -0600 |
| commit | 55c9f58219df0fa4a7bdcc2dd34cd71b172f77ea (patch) | |
| tree | 118c9db496099b0c8fab02e65dc9a0b7a7e5310e /azalea-nbt/src/decode.rs | |
| parent | b030b9de9345d7b1cfef205e5b9a1e2c7dc6025e (diff) | |
| download | azalea-drasl-55c9f58219df0fa4a7bdcc2dd34cd71b172f77ea.tar.xz | |
nbt tests
Diffstat (limited to 'azalea-nbt/src/decode.rs')
| -rw-r--r-- | azalea-nbt/src/decode.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/azalea-nbt/src/decode.rs b/azalea-nbt/src/decode.rs index f3fbae54..a0a4ba8c 100644 --- a/azalea-nbt/src/decode.rs +++ b/azalea-nbt/src/decode.rs @@ -6,7 +6,6 @@ use std::{collections::HashMap, io::Read}; impl Tag { fn read_known(stream: &mut impl Read, id: u8) -> Result<Tag, Error> { - println!("read_known: id={}", id); let tag = match id { // Signifies the end of a TAG_Compound. It is only ever used inside // a TAG_Compound, and is not named despite being in a TAG_Compound @@ -67,9 +66,7 @@ impl Tag { 10 => { let mut map = HashMap::new(); loop { - println!("compound loop"); let tag_id = stream.read_u8().unwrap_or(0); - println!("compound loop tag_id={}", tag_id); if tag_id == 0 { break; } |
