You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by zh...@apache.org on 2020/05/23 17:13:10 UTC

[flink] branch release-1.11 updated: [hotfix][formatting] Fix the checkstyle issue of missing a javadoc comment in DummyNoOpOperator

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

zhijiang pushed a commit to branch release-1.11
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.11 by this push:
     new c408bb1  [hotfix][formatting] Fix the checkstyle issue of missing a javadoc comment in DummyNoOpOperator
c408bb1 is described below

commit c408bb1c96147eec2bcc71adc0bd482a9da52aa6
Author: Zhijiang <wa...@aliyun.com>
AuthorDate: Sat May 23 19:07:37 2020 +0200

    [hotfix][formatting] Fix the checkstyle issue of missing a javadoc comment in DummyNoOpOperator
---
 .../src/main/scala/org/apache/flink/table/util/DummyNoOpOperator.java  | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/util/DummyNoOpOperator.java b/flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/util/DummyNoOpOperator.java
index a14d632..dd3fa0a 100644
--- a/flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/util/DummyNoOpOperator.java
+++ b/flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/util/DummyNoOpOperator.java
@@ -40,6 +40,9 @@ public class DummyNoOpOperator<IN> extends NoOpOperator<IN> {
 		setInput(input);
 	}
 
+	/**
+	 * Dummy file input format implementation.
+	 */
 	public static class DummyInputFormat<IN> extends FileInputFormat<IN> {
 
 		@Override