Skip to content

Commit

Permalink
Fix dead_code clippy warning from try_recv_initial
Browse files Browse the repository at this point in the history
  • Loading branch information
ysaito1001 committed Feb 11, 2025
1 parent 2ffa396 commit 5d75582
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rust-runtime/inlineable/src/event_receiver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ impl<T, E> EventReceiver<T, E> {
// Wrapper around `try_recv_initial` on `aws_smithy_http::event_stream::Receiver`
//
// Note: This method is intended for internal use only.
#[allow(dead_code)]
pub(crate) async fn try_recv_initial(
&mut self,
) -> Result<Option<Message>, SdkError<E, RawMessage>> {
Expand Down

0 comments on commit 5d75582

Please sign in to comment.