From c66be0febcddfcc854818d1cc66e847f7a1532f5 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 2 Mar 2025 18:22:43 -0500 Subject: [PATCH] Remove leftover and unused binrw debug printing --- src/property/map_property.rs | 2 -- src/property/set_property.rs | 3 --- 2 files changed, 5 deletions(-) diff --git a/src/property/map_property.rs b/src/property/map_property.rs index 7caadfc..5d1c73e 100644 --- a/src/property/map_property.rs +++ b/src/property/map_property.rs @@ -53,7 +53,6 @@ pub struct StructMaybeKey { pub r#struct: Struct, #[br(parse_with = cc)] - #[br(dbg)] extra_fields: Vec, } @@ -289,7 +288,6 @@ pub struct MapProperty { pub value_name: String, #[brw(pad_before = 5)] - #[br(dbg)] pub map_key_type: KeyType, #[br(parse_with = custom_parser, args(size_in_bytes, &map_key_type, &value_name))] diff --git a/src/property/set_property.rs b/src/property/set_property.rs index 28acf72..e943720 100644 --- a/src/property/set_property.rs +++ b/src/property/set_property.rs @@ -46,7 +46,6 @@ pub enum SetValue { #[br(import(value_type: &str, key_type: &KeyType))] pub struct SetEntry { #[br(args { magic: value_type, key_type })] - #[br(dbg)] pub key: SetValue, } @@ -83,11 +82,9 @@ pub struct SetProperty { #[brw(pad_before = 4)] #[br(parse_with = read_string_with_length)] #[bw(write_with = write_string_with_length)] - #[br(dbg)] pub key_name: String, #[brw(pad_before = 5)] - #[br(dbg)] pub key_type: KeyType, #[br(parse_with = custom_parser, args(size_in_bytes, &key_name, &key_type))]