mirror of
https://codeberg.org/icewind/logsmash.git
synced 2026-06-03 10:04:12 +02:00
cleanup
This commit is contained in:
parent
dc4b5d2853
commit
7dfbbddde6
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ impl<'a> FromIterator<Result<LogLine<'a>, (LogLineNumber, JsonError)>> for Parse
|
||||||
iter: T,
|
iter: T,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
let iter = iter.into_iter();
|
let iter = iter.into_iter();
|
||||||
let mut parsed_lines = Vec::with_capacity(dbg!(iter.size_hint().0));
|
let mut parsed_lines = Vec::with_capacity(iter.size_hint().0);
|
||||||
let mut error_lines = Vec::with_capacity(128);
|
let mut error_lines = Vec::with_capacity(128);
|
||||||
for result in iter {
|
for result in iter {
|
||||||
match result {
|
match result {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue