Fix up processor

This commit is contained in:
Tadgh 2023-04-25 17:42:13 -07:00
parent f20206ad29
commit bce71da2b0
1 changed files with 2 additions and 5 deletions

View File

@ -1,5 +1,3 @@
package ca.uhn.fhir.batch2.coordinator;
/*-
* #%L
* HAPI FHIR JPA Server - Batch2 Task Processor
@ -19,6 +17,7 @@ package ca.uhn.fhir.batch2.coordinator;
* limitations under the License.
* #L%
*/
package ca.uhn.fhir.batch2.coordinator;
import ca.uhn.fhir.batch2.api.IJobPersistence;
import ca.uhn.fhir.batch2.api.IJobStepWorker;
@ -57,9 +56,7 @@ public class WorkChunkProcessor {
private final BatchJobSender myBatchJobSender;
private final StepExecutor myStepExecutor;
public WorkChunkProcessor(IJobPersistence theJobPersistence,
BatchJobSender theSender,
IHapiTransactionService theTransactionService) {
public WorkChunkProcessor(IJobPersistence theJobPersistence, BatchJobSender theSender) {
myJobPersistence = theJobPersistence;
myBatchJobSender = theSender;
myStepExecutor = new StepExecutor(theJobPersistence);