Github user aljoscha commented on a diff in the pull request:
https://github.com/apache/flink/pull/5691#discussion_r178075205
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/state/heap/AbstractHeapState.java
---
@@ -31,14 +31,13 @@
* Base class for partitioned {@link State} implementations that are
backed by a regular
* heap hash map. The concrete implementations define how the state is
checkpointed.
*
- * @param <K> The type of the key.
- * @param <N> The type of the namespace.
- * @param <SV> The type of the values in the state.
- * @param <S> The type of State
- * @param <SD> The type of StateDescriptor for the State S
+ * @param <K> The type of the key.
--- End diff --
All of the generic parameters seem to have a tab in them. That's why they
look wonky here. Maybe should fix those.
---