Remove stray println.

This commit is contained in:
Niko Matsakis 2016-01-22 12:30:40 -05:00
parent 53c7e620c9
commit b9f80bf2c6

View File

@ -379,7 +379,6 @@ impl<'input> Tokenizer<'input> {
// for a suitable terminator: `,`, `;`, `]`, `}`, or `)`.
let mut balance = 0; // number of unclosed `(` etc
loop {
println!("code: balance={:?} self.lookahead={:?}", balance, self.lookahead);
if let Some((idx, c)) = self.lookahead {
if c == '"' {
self.bump();