[ 
https://issues.apache.org/jira/browse/FLINK-6246?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15954849#comment-15954849
 ] 

ASF GitHub Bot commented on FLINK-6246:
---------------------------------------

Github user aljoscha commented on a diff in the pull request:

    https://github.com/apache/flink/pull/3662#discussion_r109608264
  
    --- Diff: 
flink-examples/flink-examples-streaming/src/main/java/org/apache/flink/streaming/examples/iteration/IterateExample.java
 ---
    @@ -107,7 +107,8 @@ public static void main(String[] args) throws Exception 
{
                }
     
                // execute the program
    -           env.execute("Streaming Iteration Example");
    +           System.out.println(env.getExecutionPlan());
    --- End diff --
    
    Oh no, I was playing around with something. 😱 


> Fix generic type of OutputTag in operator Output
> ------------------------------------------------
>
>                 Key: FLINK-6246
>                 URL: https://issues.apache.org/jira/browse/FLINK-6246
>             Project: Flink
>          Issue Type: Bug
>          Components: DataStream API
>            Reporter: Aljoscha Krettek
>
> The current signature is
> {code}
> <X> void collect(OutputTag<?> outputTag, StreamRecord<X> record)
> {code}
> which can be improved to
> {code}
> <X> void collect(OutputTag<X> outputTag, StreamRecord<X> record)
> {code}
> This is probably leftover from an intermediate stage of development.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to