Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmcclean committed Jun 2, 2017
1 parent afc3b42 commit 64029bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static <T> StreamKind<T> widen(final Stream<T> stream) {
public static <T> StreamKind<T> widen(final Publisher<T> completableStream) {

return new StreamKind<>(
Stream.ofAll((Stream<T>)ReactiveSeq.fromPublisher(completableStream)));
Stream.ofAll((java.util.stream.Stream<T>)ReactiveSeq.fromPublisher(completableStream)));
}

/**
Expand Down

0 comments on commit 64029bc

Please sign in to comment.