util: remove stream feature flag from DelayQueue (#3087)

This commit is contained in:
Akira Hayakawa
2020-11-03 09:20:24 +01:00
committed by GitHub
parent bbc8eb0f91
commit e309da0bee
-1
View File
@@ -771,7 +771,6 @@ impl<T> Default for DelayQueue<T> {
}
}
#[cfg(feature = "stream")]
impl<T> futures_core::Stream for DelayQueue<T> {
// DelayQueue seems much more specific, where a user may care that it
// has reached capacity, so return those errors instead of panicking.