Zakelly commented on code in PR #26419: URL: https://github.com/apache/flink/pull/26419#discussion_r2036397553
########## flink-runtime/src/main/java/org/apache/flink/streaming/api/datastream/KeyedStream.java: ########## @@ -370,7 +372,7 @@ public <R> SingleOutputStreamOperator<R> process( @Override public <R> SingleOutputStreamOperator<R> flatMap( FlatMapFunction<T, R> flatMapper, TypeInformation<R> outputType) { - OneInputStreamOperator operator = + OneInputStreamOperator<T, R> operator = isEnableAsyncState() ? new AsyncStreamFlatMap(clean(flatMapper)) Review Comment: ```suggestion ? new AsyncStreamFlatMap<>(clean(flatMapper)) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org