diff --git a/embassy/src/util/select.rs b/embassy/src/util/select.rs index aef22d894..29e17968b 100644 --- a/embassy/src/util/select.rs +++ b/embassy/src/util/select.rs @@ -25,13 +25,6 @@ pub fn select_all(arr: [Fut; N]) -> SelectAll SelectAll { - /// Consumes this combinator, returning the underlying futures. - pub fn into_inner(self) -> [Fut; N] { - self.inner - } -} - impl Future for SelectAll { type Output = (Fut::Output, usize);