From 9882d864e7fcb9274cf09df5e857987b449e6339 Mon Sep 17 00:00:00 2001 From: Ivan Petkov Date: Tue, 6 Oct 2020 13:59:12 -0700 Subject: [PATCH] fmt --- tokio/src/util/linked_list.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tokio/src/util/linked_list.rs b/tokio/src/util/linked_list.rs index 4990ceaa34c..58200d595bb 100644 --- a/tokio/src/util/linked_list.rs +++ b/tokio/src/util/linked_list.rs @@ -181,11 +181,7 @@ impl fmt::Debug for LinkedList { } } -#[cfg(any( - all(unix, feature = "process"), - feature = "signal", - feature = "sync", -))] +#[cfg(any(all(unix, feature = "process"), feature = "signal", feature = "sync"))] impl LinkedList { pub(crate) fn last(&self) -> Option<&L::Target> { let tail = self.tail.as_ref()?;