From 8e7f95089cc274bc269a5f58cc9aab85b9a6c347 Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Sun, 6 Sep 2020 08:29:04 +0300 Subject: [PATCH] Fix clippy warning inherited from master --- actix-rt/src/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-rt/src/builder.rs b/actix-rt/src/builder.rs index 29963703..f4d9b1bf 100644 --- a/actix-rt/src/builder.rs +++ b/actix-rt/src/builder.rs @@ -137,7 +137,7 @@ impl AsyncSystemRunner { Err(e) => Err(io::Error::new(io::ErrorKind::Other, e)), }; Arbiter::stop_system(); - return res; + res } }) .flatten()