From 6ad685ac6bbf2af59d962dab9075046fb396f3b3 Mon Sep 17 00:00:00 2001 From: leestana01 Date: Fri, 5 Jun 2026 18:41:22 +0900 Subject: [PATCH] Fix incorrect Javadoc reference in JobExecution.isStopped() The isStopped() Javadoc referenced StepExecution, whereas the sibling isRunning() and isStopping() methods correctly refer to JobExecution. Signed-off-by: leestana01 --- .../java/org/springframework/batch/core/job/JobExecution.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/job/JobExecution.java b/spring-batch-core/src/main/java/org/springframework/batch/core/job/JobExecution.java index f11403ee45..672fc36627 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/job/JobExecution.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/job/JobExecution.java @@ -214,7 +214,7 @@ public boolean isStopping() { } /** - * Test if this {@link StepExecution} indicates that it has been stopped. + * Test if this {@link JobExecution} indicates that it has been stopped. * @return {@code true} if the status is {@link BatchStatus#STOPPED}. */ public boolean isStopped() {