diff options
author | Alex Auvolat <alex@adnab.me> | 2022-06-29 12:52:58 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-06-29 12:52:58 +0200 |
commit | 3cf91429c7eb675639fbcbf006e04d790645cf77 (patch) | |
tree | fcf9590a98955063a63c5fcc58f4ae9764da1a28 /src/imap/mod.rs | |
parent | 90b143e1c57c6561998176878b2cc586b2d89c80 (diff) | |
download | aerogramme-3cf91429c7eb675639fbcbf006e04d790645cf77.tar.gz aerogramme-3cf91429c7eb675639fbcbf006e04d790645cf77.zip |
Clean up unused imports
Diffstat (limited to 'src/imap/mod.rs')
-rw-r--r-- | src/imap/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imap/mod.rs b/src/imap/mod.rs index b725859..0e9f49a 100644 --- a/src/imap/mod.rs +++ b/src/imap/mod.rs @@ -61,7 +61,7 @@ impl<'a> Service<&'a AddrStream> for Instance { type Error = anyhow::Error; type Future = BoxFuture<'static, Result<Self::Response>>; - fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { + fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { Poll::Ready(Ok(())) } @@ -93,7 +93,7 @@ impl Service<Request> for Connection { type Error = BalError; type Future = BoxFuture<'static, Result<Self::Response, Self::Error>>; - fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { + fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { Poll::Ready(Ok(())) } |