This is an automated email from the ASF dual-hosted git repository.
yuzelin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 0c3026cfda [hotfix] Remove unnecessary override in
CommitListenerFactory
0c3026cfda is described below
commit 0c3026cfda96e7f50fd06d9f04afb6400eaefccc
Author: yuzelin <[email protected]>
AuthorDate: Fri Jun 20 10:48:30 2025 +0800
[hotfix] Remove unnecessary override in CommitListenerFactory
---
.../org/apache/paimon/flink/sink/listener/CommitListenerFactory.java | 2 --
1 file changed, 2 deletions(-)
diff --git
a/paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/sink/listener/CommitListenerFactory.java
b/paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/sink/listener/CommitListenerFactory.java
index e3b3205358..5233878e3b 100644
---
a/paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/sink/listener/CommitListenerFactory.java
+++
b/paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/sink/listener/CommitListenerFactory.java
@@ -28,8 +28,6 @@ import java.util.Optional;
/** Factory for {@link CommitListener}. */
public interface CommitListenerFactory extends Factory {
- String identifier();
-
Optional<CommitListener> create(Committer.Context context, FileStoreTable
table)
throws Exception;