You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2017/09/26 16:04:46 UTC

[4/9] flink git commit: [hotfix] [docs] Method name for PatternFlatSelectFunction should be flatSelect

[hotfix] [docs] Method name for PatternFlatSelectFunction should be flatSelect

This closes #4687.


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/415e7d03
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/415e7d03
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/415e7d03

Branch: refs/heads/master
Commit: 415e7d03e655b93c9c0e398f7ea00bc3c7dc440d
Parents: 2b82578
Author: David Anderson <da...@alpinegizmo.com>
Authored: Wed Sep 20 15:57:40 2017 +0200
Committer: Tzu-Li (Gordon) Tai <tz...@apache.org>
Committed: Tue Sep 26 18:04:07 2017 +0200

----------------------------------------------------------------------
 docs/dev/libs/cep.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/415e7d03/docs/dev/libs/cep.md
----------------------------------------------------------------------
diff --git a/docs/dev/libs/cep.md b/docs/dev/libs/cep.md
index 492f95f..8b16ac4 100644
--- a/docs/dev/libs/cep.md
+++ b/docs/dev/libs/cep.md
@@ -1416,7 +1416,7 @@ used to forward your output elements downstream.
 {% highlight java %}
 class MyPatternFlatSelectFunction<IN, OUT> implements PatternFlatSelectFunction<IN, OUT> {
     @Override
-    public void select(Map<String, List<IN>> pattern, Collector<OUT> collector) {
+    public void flatSelect(Map<String, List<IN>> pattern, Collector<OUT> collector) {
         IN startEvent = pattern.get("start").get(0);
         IN endEvent = pattern.get("end").get(0);