mirror of
https://codeberg.org/icewind/tf-log-parser.git
synced 2026-06-03 18:24:09 +02:00
some derive cleanup
This commit is contained in:
parent
14c1fbe0d9
commit
c06e09e691
5 changed files with 58 additions and 49 deletions
|
|
@ -160,7 +160,7 @@ impl<'a> Iterator for LineSplit<'a> {
|
|||
None if self.start < self.input.len() => {
|
||||
let line = &self.input[self.start..];
|
||||
self.start = self.input.len();
|
||||
Some(dbg!(line.trim_end_matches("\n")))
|
||||
Some(line.trim_end_matches("\n"))
|
||||
}
|
||||
_ => None,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue