Skip to content

Commit 1823a23

Browse files
dbmalkovskyfiliphr
authored andcommitted
Chore: replace explicit type with <> (as of JDK 7)
1 parent ccfe987 commit 1823a23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/flowable-engine/src/main/java/org/flowable/engine/impl/dynamic/AbstractDynamicStateManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ protected void safeDeleteSubProcessInstance(String processInstanceId, List<Execu
694694
//Confirm that all the subProcessExecutions are in the executions pool
695695
List<ExecutionEntity> subProcessExecutions = executionEntityManager.findChildExecutionsByProcessInstanceId(processInstanceId);
696696

697-
Set<String> executionIdsToMove = new HashSet<String>();
697+
Set<String> executionIdsToMove = new HashSet<>();
698698
for (ExecutionEntity executionPoolItem : executionsPool) {
699699
executionIdsToMove.add(executionPoolItem.getId());
700700
}
@@ -1747,4 +1747,4 @@ protected ProcessDefinition resolveProcessDefinition(String processDefinitionKey
17471747
private String printFlowElementIds(Collection<FlowElementMoveEntry> flowElements) {
17481748
return flowElements.stream().map(FlowElementMoveEntry::getNewFlowElement).map(FlowElement::getId).collect(Collectors.joining(","));
17491749
}
1750-
}
1750+
}

0 commit comments

Comments
 (0)