Skip to content

Commit

Permalink
remove debug printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
birkenfeld committed Aug 28, 2024
1 parent 17268b5 commit b1c721e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/de.rs
Original file line number Diff line number Diff line change
Expand Up @@ -952,8 +952,6 @@ impl<R: Read> Deserializer<R> {

// Push the Value::Global referenced by modname and globname.
fn decode_global(&mut self, modname: Vec<u8>, globname: Vec<u8>) -> Result<Value> {
println!("{:?}", std::str::from_utf8(&modname));
println!("{:?}", std::str::from_utf8(&globname));
let value = match (&*modname, &*globname) {
(b"_codecs", b"encode") => Value::Global(Global::Encode),
(b"copy_reg", b"_reconstructor") |
Expand Down

0 comments on commit b1c721e

Please sign in to comment.