Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
link2xt committed Oct 8, 2024
1 parent a9ed3da commit aefbdf9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/tokio/bufread/generic/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl<R: AsyncBufRead, D: Decode> Decoder<R, D> {
} else {
State::Decoding
}
},
}
Poll::Ready(input) => {
let mut input = PartialBuffer::new(input?);
let done = this.decoder.decode(&mut input, output)?;
Expand All @@ -105,7 +105,6 @@ impl<R: AsyncBufRead, D: Decode> Decoder<R, D> {
}
}
}

}

State::Flushing => {
Expand Down

0 comments on commit aefbdf9

Please sign in to comment.