Aljoscha Krettek created FLINK-6246: ---------------------------------------
Summary: 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)