This is an automated email from the ASF dual-hosted git repository. sewen pushed a commit to branch release-1.11 in repository https://gitbox.apache.org/repos/asf/flink.git
commit dffc12455a4f2a35265e8ca64634b3c16ee193e2 Author: Stephan Ewen <[email protected]> AuthorDate: Mon Sep 21 18:09:43 2020 +0200 [hotfix][runtime] Remove commented-out annotation in SourceOperator --- .../java/org/apache/flink/streaming/api/operators/SourceOperator.java | 1 - 1 file changed, 1 deletion(-) diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/SourceOperator.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/SourceOperator.java index d925b23..742d7ce 100644 --- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/SourceOperator.java +++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/SourceOperator.java @@ -66,7 +66,6 @@ import static org.apache.flink.util.Preconditions.checkNotNull; * @param <OUT> The output type of the operator. */ @Internal -//@SuppressWarnings("serial") public class SourceOperator<OUT, SplitT extends SourceSplit> extends AbstractStreamOperator<OUT> implements OperatorEventHandler, PushingAsyncDataInput<OUT> {
