You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2019/05/16 08:38:06 UTC

[flink] branch master updated: [FLINK-12287][runtime] Correct javadoc

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 41bb1b5  [FLINK-12287][runtime] Correct javadoc
41bb1b5 is described below

commit 41bb1b5cb2bb1670a6cdea2235f260446e5467ce
Author: Leeviiii <ya...@gmail.com>
AuthorDate: Thu May 16 16:37:51 2019 +0800

    [FLINK-12287][runtime] Correct javadoc
---
 .../apache/flink/streaming/runtime/streamrecord/StreamElement.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/streamrecord/StreamElement.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/streamrecord/StreamElement.java
index 10e0a93..7899d15 100644
--- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/streamrecord/StreamElement.java
+++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/streamrecord/StreamElement.java
@@ -53,8 +53,8 @@ public abstract class StreamElement {
 	}
 
 	/**
-	 * Checks whether this element is a record.
-	 * @return True, if this element is a record, false otherwise.
+	 * Checks whether this element is a latency marker.
+	 * @return True, if this element is a latency marker, false otherwise.
 	 */
 	public final boolean isLatencyMarker() {
 		return getClass() == LatencyMarker.class;