Skip to content

Commit

Permalink
Merge branch 'main' into flowable-release-7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
filiphr committed Nov 7, 2023
2 parents e2adddd + 7b7f353 commit 3428ac3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Flowable (V7)
![Docker Hub](https://shields.io/docker/pulls/flowable/flowable-rest)](https://hub.docker.com/u/flowable/flowable-rest)

[License:
![license](https://img.shields.io/hexpm/l/plug.svg)](https://github.com/flowable/flowable-engine/blob/master/LICENSE)
![license](https://img.shields.io/hexpm/l/plug.svg)](https://github.com/flowable/flowable-engine/blob/main/LICENSE)

![Flowable Actions CI](https://github.com/flowable/flowable-engine/workflows/Flowable%20Main%20Build/badge.svg?branch=master)
![Flowable Actions CI](https://github.com/flowable/flowable-engine/actions/workflows/main.yml/badge.svg?branch=main)

Homepage: https://www.flowable.org/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
import org.flowable.cmmn.converter.export.CaseExport;
import org.flowable.cmmn.converter.export.CmmnDIExport;
import org.flowable.cmmn.converter.export.DefinitionsRootExport;
import org.flowable.cmmn.converter.export.PlanItemDefinitionExport;
import org.flowable.cmmn.converter.export.StageExport;
import org.flowable.cmmn.converter.export.TextAnnotationExport;
import org.flowable.cmmn.converter.util.PlanItemDependencyUtil;
Expand Down Expand Up @@ -294,7 +295,7 @@ public byte[] convertToXML(CmmnModel model, String encoding) {

Stage planModel = caseModel.getPlanModel();

StageExport.getInstance().writePlanItemDefinition(model, planModel, xtw);
PlanItemDefinitionExport.writePlanItemDefinition(model, planModel, xtw);

// end case element
xtw.writeEndElement();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static StageExport getInstance() {
return instance;
}

private StageExport() {
protected StageExport() {
}

@Override
Expand Down

0 comments on commit 3428ac3

Please sign in to comment.