Skip to content

Commit

Permalink
Get rid of debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Redrield committed Oct 3, 2018
1 parent 635dd6e commit b1b2efe
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/adapter/compact.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ pub fn serialize<S: Serializer>(
u: &Uuid,
serializer: S,
) -> Result<S::Ok, S::Error> {
println!("sereeeeeeeeealize");
let mut seq = serializer.serialize_tuple(16)?;

for byte in u.as_bytes() {
Expand All @@ -34,7 +33,6 @@ pub fn serialize<S: Serializer>(
pub fn deserialize<'de, D: Deserializer<'de>>(
deserializer: D,
) -> Result<Uuid, D::Error> {
println!("desereeeeeeeeialize");
struct DenseUuidBytesVisitor;

impl<'vi> de::Visitor<'vi> for DenseUuidBytesVisitor {
Expand Down

0 comments on commit b1b2efe

Please sign in to comment.