aboutsummaryrefslogtreecommitdiff
path: root/src/imap/command/examined.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/imap/command/examined.rs')
-rw-r--r--src/imap/command/examined.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/imap/command/examined.rs b/src/imap/command/examined.rs
index d459cf0..aad7874 100644
--- a/src/imap/command/examined.rs
+++ b/src/imap/command/examined.rs
@@ -48,9 +48,7 @@ pub async fn dispatch<'a>(ctx: ExaminedContext<'a>) -> Result<(Response, flow::T
// --- PRIVATE ---
impl<'a> ExaminedContext<'a> {
- async fn close(
- self,
- ) -> Result<(Response, flow::Transition)> {
+ async fn close(self) -> Result<(Response, flow::Transition)> {
Ok((Response::ok("CLOSE completed")?, flow::Transition::Unselect))
}