From 5a9b0f317bb50fcafba71855d525c5090557e593 Mon Sep 17 00:00:00 2001 From: leif stawnyczy Date: Tue, 26 Mar 2024 13:20:48 -0400 Subject: [PATCH] spotless --- .../main/java/ca/uhn/fhir/jpa/batch2/JpaJobPersistenceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaJobPersistenceImpl.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaJobPersistenceImpl.java index e814a0ab929..3851926d49b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaJobPersistenceImpl.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/batch2/JpaJobPersistenceImpl.java @@ -435,7 +435,7 @@ public class JpaJobPersistenceImpl implements IJobPersistence { PageRequest.of(thePageIndex, thePageSize), theInstanceId); } else { chunks = myWorkChunkRepository.fetchChunksNoData( - PageRequest.of(thePageIndex, thePageSize), theInstanceId); + PageRequest.of(thePageIndex, thePageSize), theInstanceId); } for (Batch2WorkChunkEntity chunk : chunks) { theConsumer.accept(toChunk(chunk));