Skip to content

Commit

Permalink
Correct Process instance controller
Browse files Browse the repository at this point in the history
  • Loading branch information
shsahahyland committed Nov 22, 2024
1 parent 12a3c81 commit 50c186c
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,15 @@ public class ProcessInstanceController {

private final ProcessInstanceService processInstanceService;

private final ProcessInstanceControllerHelper processInstanceControllerHelper;

@Autowired
public ProcessInstanceController(
ProcessInstanceRepresentationModelAssembler processInstanceRepresentationModelAssembler,
AlfrescoPagedModelAssembler<ProcessInstanceEntity> pagedCollectionModelAssembler,
ProcessInstanceService processInstanceService,
ProcessInstanceControllerHelper processInstanceControllerHelper
ProcessInstanceService processInstanceService
) {
this.processInstanceRepresentationModelAssembler = processInstanceRepresentationModelAssembler;
this.pagedCollectionModelAssembler = pagedCollectionModelAssembler;
this.processInstanceService = processInstanceService;
this.processInstanceControllerHelper = processInstanceControllerHelper;
}

@Operation(summary = "Find process instances", hidden = true)
Expand Down

0 comments on commit 50c186c

Please sign in to comment.