You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2020/09/21 19:17:16 UTC

[flink] 02/02: [hotfix][runtime] Remove commented-out annotation in SourceOperator

This is an automated email from the ASF dual-hosted git repository.

sewen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 2da55b8f841ba93e1aa7c56de31e6c5632d725ba
Author: Stephan Ewen <se...@apache.org>
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 05b3216..95c9eda 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> {