Skip to content

Commit

Permalink
Removes debug println
Browse files Browse the repository at this point in the history
  • Loading branch information
sushant94 committed Jun 6, 2016
1 parent 6c1c4d9 commit 21f031f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/parser.rs
Expand Up @@ -152,7 +152,6 @@ impl Parse for Parser {
}

fn fetch_operands(&mut self, t: &Token) -> (Option<Token>, Option<Token>) {
println!("Fetch operands: {:?}", t);
let result = if t.is_binary() {
(self.pop_op(), self.pop_op())
} else if t.is_unary() {
Expand Down

0 comments on commit 21f031f

Please sign in to comment.