Skip to content

Commit

Permalink
fix(parser): remove println! uses
Browse files Browse the repository at this point in the history
These seem to be left over debug statements and cause issues when attempting to consume `stdout` of a binary using this library.
  • Loading branch information
nokome authored and nadavrot committed May 12, 2024
1 parent 51906fe commit 04af25d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions layout/src/gv/parser/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ impl DotParser {
Result::Ok(ns)
}
_ => {
println!("{:?}", self.tok);
to_error("Unsupported token")
}
}
Expand Down Expand Up @@ -205,7 +204,6 @@ impl DotParser {
}

_ => {
println!("{:?}", self.tok);
to_error("Unknown token")
}
}
Expand Down

0 comments on commit 04af25d

Please sign in to comment.