Github user StefanRRichter commented on a diff in the pull request: https://github.com/apache/flink/pull/6156#discussion_r195118823 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/state/heap/HeapValueState.java --- @@ -30,7 +30,7 @@ * @param <V> The type of the value. */ public class HeapValueState<K, N, V> - extends AbstractHeapState<K, N, V, ValueState<V>> + extends AbstractHeapState<K, N, V> --- End diff -- The same also holds for `HeapMapState` etc.
---