Skip to content

Commit 14b443b

Browse files
committed
Fix formatting
1 parent 9211c2d commit 14b443b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

spring-batch-integration/src/main/java/org/springframework/batch/integration/partition/MessageChannelPartitionHandler.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ public void setReplyChannel(PollableChannel replyChannel) {
222222
* @see PartitionHandler#handle(StepExecutionSplitter, StepExecution)
223223
*/
224224
@Override
225-
protected Set<StepExecution> doHandle(StepExecution managerStepExecution, Set<StepExecution> partitionStepExecutions) throws Exception {
225+
protected Set<StepExecution> doHandle(StepExecution managerStepExecution,
226+
Set<StepExecution> partitionStepExecutions) throws Exception {
226227

227228
if (CollectionUtils.isEmpty(partitionStepExecutions)) {
228229
return partitionStepExecutions;
@@ -248,8 +249,8 @@ protected Set<StepExecution> doHandle(StepExecution managerStepExecution, Set<St
248249
}
249250
}
250251

251-
private Set<StepExecution> pollReplies(final StepExecution managerStepExecution,
252-
final Set<StepExecution> split) throws Exception {
252+
private Set<StepExecution> pollReplies(final StepExecution managerStepExecution, final Set<StepExecution> split)
253+
throws Exception {
253254
final Set<StepExecution> result = new HashSet<>(split.size());
254255

255256
Callable<Set<StepExecution>> callback = new Callable<Set<StepExecution>>() {

0 commit comments

Comments
 (0)