Skip to content

Commit

Permalink
@GenIgnore ReadStream#collect
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed May 23, 2024
1 parent 6672988 commit 93915f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/vertx/core/streams/ReadStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ default void pipeTo(WriteStream<T> dst, Handler<AsyncResult<Void>> handler) {
*
* @return a future notified with result produced by the {@code collector} applied to this stream
*/
@GenIgnore(GenIgnore.PERMITTED_TYPE)
@GenIgnore
default <R, A> Future<R> collect(java.util.stream.Collector<T , A , R> collector) {
PromiseInternal<R> promise = (PromiseInternal<R>) Promise.promise();
A cumulation = collector.supplier().get();
Expand Down

0 comments on commit 93915f2

Please sign in to comment.