From 8c632ed928d94fe2555bb8979ffcd33407ceed69 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Fri, 26 Jun 2020 19:54:12 +0800 Subject: [PATCH] Remove println. --- src/token.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/token.rs b/src/token.rs index 1e53d8a3..90ee1d34 100644 --- a/src/token.rs +++ b/src/token.rs @@ -632,7 +632,6 @@ pub fn get_next_token( scan_comment(stream, state, pos, &mut comment); if state.include_comments { - println!("Comment ({}): {}", start_pos, comment); return Some((Token::Comment(comment), start_pos)); } } @@ -920,7 +919,6 @@ pub fn get_next_token( } if state.include_comments { - println!("Comment ({}): {}", start_pos, comment); return Some((Token::Comment(comment), start_pos)); } } @@ -937,7 +935,6 @@ pub fn get_next_token( scan_comment(stream, state, pos, &mut comment); if state.include_comments { - println!("Comment ({}): {}", start_pos, comment); return Some((Token::Comment(comment), start_pos)); } }