From c29e8be0efae509616955c0653c8999dda3627bd Mon Sep 17 00:00:00 2001 From: ChanTsune <41658782+ChanTsune@users.noreply.github.com> Date: Sun, 3 Nov 2024 19:01:48 +0900 Subject: [PATCH] :shirt: fix clippy warning in libpna - needless_lifetimes --- lib/src/entry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/entry.rs b/lib/src/entry.rs index f335e6db..e1b88a28 100644 --- a/lib/src/entry.rs +++ b/lib/src/entry.rs @@ -127,7 +127,7 @@ impl Read for EntryDataReader<'_> { } #[cfg(feature = "unstable-async")] -impl<'r> futures_io::AsyncRead for EntryDataReader<'r> { +impl futures_io::AsyncRead for EntryDataReader<'_> { #[inline] fn poll_read( self: std::pin::Pin<&mut Self>,