We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6376ca commit 196cecdCopy full SHA for 196cecd
modules/flowable-cmmn-model/src/main/java/org/flowable/cmmn/model/CmmnModel.java
@@ -141,8 +141,8 @@ public PlanItem findPlanItem(String id) {
141
142
if (foundPlanItem == null) {
143
for (Case caseModel : cases) {
144
- for (Stage stage : caseModel.getPlanModel().findPlanItemDefinitionsOfType(Stage.class, true)) {
145
- foundPlanItem = stage.findPlanItemInPlanFragmentOrUpwards(id);
+ for (PlanFragment planFragment : caseModel.getPlanModel().findPlanItemDefinitionsOfType(PlanFragment.class, true)) {
+ foundPlanItem = planFragment.findPlanItemInPlanFragmentOrUpwards(id);
146
if (foundPlanItem != null) {
147
break;
148
}
0 commit comments