Github user kl0u commented on a diff in the pull request:
https://github.com/apache/flink/pull/5500#discussion_r171253126
--- Diff:
flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/co/CoBroadcastWithKeyedOperatorTest.java
---
@@ -220,7 +227,8 @@ public void processElement(String value,
KeyedReadOnlyContext ctx, Collector<Str
}
@Override
- public void onTimer(long timestamp, OnTimerContext ctx,
Collector<String> out) throws Exception {
+ public void onTimer(long timestamp, OnTimerContext<String> ctx,
Collector<String> out) throws Exception {
--- End diff --
Remove the `<String>`.
---