This is an automated email from the ASF dual-hosted git repository.

ron 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 a48d09049b1 [hotfix][runtime] Remove unnecessary override for 
TaskInvokable#invoke method (#26462)
a48d09049b1 is described below

commit a48d09049b1e97362b80ffce5d5077ce0654fda1
Author: Jiaan Geng <[email protected]>
AuthorDate: Mon May 19 10:33:04 2025 +0800

    [hotfix][runtime] Remove unnecessary override for TaskInvokable#invoke 
method (#26462)
---
 .../org/apache/flink/runtime/jobgraph/tasks/AbstractInvokable.java     | 3 ---
 1 file changed, 3 deletions(-)

diff --git 
a/flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/tasks/AbstractInvokable.java
 
b/flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/tasks/AbstractInvokable.java
index d571f3deead..b9ce3029c88 100644
--- 
a/flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/tasks/AbstractInvokable.java
+++ 
b/flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/tasks/AbstractInvokable.java
@@ -70,9 +70,6 @@ public abstract class AbstractInvokable
     //  Core methods
     // ------------------------------------------------------------------------
 
-    @Override
-    public abstract void invoke() throws Exception;
-
     @Override
     public void cancel() throws Exception {
         // The default implementation does nothing.

Reply via email to