Skip to content

Commit 7f9d04d

Browse files
author
luxl
committed
[Chore] Apply spotless formatting for backfill workflow executor files
Align Java source and test formatting with project spotless rules to keep style checks consistent. Made-with: Cursor
1 parent 8880a1b commit 7f9d04d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/executor/workflow/BackfillWorkflowExecutorDelegate.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
import java.util.Set;
4747
import java.util.stream.Collectors;
4848

49-
5049
import lombok.extern.slf4j.Slf4j;
5150

5251
import org.springframework.beans.factory.annotation.Autowired;

dolphinscheduler-api/src/test/java/org/apache/dolphinscheduler/api/executor/workflow/BackfillWorkflowExecutorDelegateTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,8 @@ public void testDoBackfillDependentWorkflow_SkipWorkflowNotFound() throws Except
278278

279279
Set<Long> visitedCodes = new HashSet<>();
280280
visitedCodes.add(dto.getWorkflowDefinition().getCode());
281-
method.invoke(backfillWorkflowExecutorDelegate, dto, Collections.singletonList("2026-02-01 00:00:00"), visitedCodes);
281+
method.invoke(backfillWorkflowExecutorDelegate, dto, Collections.singletonList("2026-02-01 00:00:00"),
282+
visitedCodes);
282283

283284
verify(backfillWorkflowExecutorDelegate, never()).execute(org.mockito.ArgumentMatchers.any());
284285
}
@@ -320,7 +321,8 @@ public void testDoBackfillDependentWorkflow_SkipOfflineWorkflow() throws Excepti
320321

321322
Set<Long> visitedCodes = new HashSet<>();
322323
visitedCodes.add(dto.getWorkflowDefinition().getCode());
323-
method.invoke(backfillWorkflowExecutorDelegate, dto, Collections.singletonList("2026-02-01 00:00:00"), visitedCodes);
324+
method.invoke(backfillWorkflowExecutorDelegate, dto, Collections.singletonList("2026-02-01 00:00:00"),
325+
visitedCodes);
324326

325327
verify(backfillWorkflowExecutorDelegate, never()).execute(org.mockito.ArgumentMatchers.any());
326328
}

0 commit comments

Comments
 (0)