Remove println.
This commit is contained in:
parent
31eaf321d0
commit
8c632ed928
@ -632,7 +632,6 @@ pub fn get_next_token(
|
|||||||
scan_comment(stream, state, pos, &mut comment);
|
scan_comment(stream, state, pos, &mut comment);
|
||||||
|
|
||||||
if state.include_comments {
|
if state.include_comments {
|
||||||
println!("Comment ({}): {}", start_pos, comment);
|
|
||||||
return Some((Token::Comment(comment), start_pos));
|
return Some((Token::Comment(comment), start_pos));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -920,7 +919,6 @@ pub fn get_next_token(
|
|||||||
}
|
}
|
||||||
|
|
||||||
if state.include_comments {
|
if state.include_comments {
|
||||||
println!("Comment ({}): {}", start_pos, comment);
|
|
||||||
return Some((Token::Comment(comment), start_pos));
|
return Some((Token::Comment(comment), start_pos));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -937,7 +935,6 @@ pub fn get_next_token(
|
|||||||
scan_comment(stream, state, pos, &mut comment);
|
scan_comment(stream, state, pos, &mut comment);
|
||||||
|
|
||||||
if state.include_comments {
|
if state.include_comments {
|
||||||
println!("Comment ({}): {}", start_pos, comment);
|
|
||||||
return Some((Token::Comment(comment), start_pos));
|
return Some((Token::Comment(comment), start_pos));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user