This is an automated email from the ASF dual-hosted git repository.
hangxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 5056b0d5dfe fixup! [FLINK-33060][state] Fix the javadoc of ListState
interfaces about not allowing null value
5056b0d5dfe is described below
commit 5056b0d5dfec25ef90cd0f0e860816ade90d3869
Author: Zakelly <[email protected]>
AuthorDate: Wed Nov 8 12:43:26 2023 +0800
fixup! [FLINK-33060][state] Fix the javadoc of ListState interfaces about
not allowing null value
---
.../main/java/org/apache/flink/api/common/state/AppendingState.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/flink-core/src/main/java/org/apache/flink/api/common/state/AppendingState.java
b/flink-core/src/main/java/org/apache/flink/api/common/state/AppendingState.java
index b081f86466c..1f21427e996 100644
---
a/flink-core/src/main/java/org/apache/flink/api/common/state/AppendingState.java
+++
b/flink-core/src/main/java/org/apache/flink/api/common/state/AppendingState.java
@@ -58,8 +58,8 @@ public interface AppendingState<IN, OUT> extends State {
* of values. The next time {@link #get()} is called (for the same state
partition) the returned
* state will represent the updated list.
*
- * <p>If null is passed in, the behaviour is undefined (implementation
related).
- * TODO: An unified behaviour across all sub-classes.
+ * <p>If null is passed in, the behaviour is undefined (implementation
related). TODO: An
+ * unified behaviour across all sub-classes.
*
* @param value The new value for the state.
* @throws Exception Thrown if the system cannot access the state.