Removed dead line

This commit is contained in:
Jamie Hardt
2020-11-22 22:38:53 -08:00
parent 123d971624
commit 0685e7baca

View File

@@ -103,7 +103,6 @@ impl<R: Read + Seek> Iterator for Parser<R> {
fn next(&mut self) -> Option<Event> {
let (event, next_state) = self.advance();
//println!("{:?}", event);
self.state = next_state;
return event;
}