Github user zhangminglei commented on a diff in the pull request:
https://github.com/apache/flink/pull/4705#discussion_r145401310
--- Diff:
flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamExecutionEnvironment.java
---
@@ -439,7 +439,7 @@ public CheckpointingMode getCheckpointingMode() {
* from operations on {@link
org.apache.flink.streaming.api.datastream.KeyedStream}) is maintained
* (heap, managed memory, externally), and where state
snapshots/checkpoints are stored, both for
* the key/value state, and for checkpointed functions (implementing
the interface
- * {@link org.apache.flink.streaming.api.checkpoint.Checkpointed}).
+ * {@link
org.apache.flink.streaming.api.checkpoint.CheckpointedFunction}).
--- End diff --
Thanks @pnowojski for review. I am appreciate it! Hmm, I am not sure if it
exists maven plugins tools for checking the same thing. I will updated the code
based on your suggestions. Then, watch the test what will happen. Why did I put
it in ```manual``` package, because I found a class named
```CheckForbiddenMethodsUsage``` might did the same stuff. So, I also did it
like this. Do you have any good idea where it should put ?
---