We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afc3b42 commit 64029bcCopy full SHA for 64029bc
cyclops-vavr/src/main/java/com/aol/cyclops/vavr/hkt/StreamKind.java
@@ -83,7 +83,7 @@ public static <T> StreamKind<T> widen(final Stream<T> stream) {
83
public static <T> StreamKind<T> widen(final Publisher<T> completableStream) {
84
85
return new StreamKind<>(
86
- Stream.ofAll((Stream<T>)ReactiveSeq.fromPublisher(completableStream)));
+ Stream.ofAll((java.util.stream.Stream<T>)ReactiveSeq.fromPublisher(completableStream)));
87
}
88
89
/**
0 commit comments