Github user sihuazhou commented on a diff in the pull request: https://github.com/apache/flink/pull/6173#discussion_r195903979 --- Diff: flink-core/src/main/java/org/apache/flink/api/common/state/StateBinder.java --- @@ -23,7 +23,10 @@ /** * The {@code StateBinder} is used by {@link StateDescriptor} instances to create actual * {@link State} objects. + * + * @deprecated refactored to StateFactory in flink-runtime */ +@Deprecated @Internal public interface StateBinder { --- End diff -- Since it is internal, how about just remove it?
---