File tree 2 files changed +4
-4
lines changed
modules/flowable-bpmn-layout
src/main/java/org/flowable/bpmn
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 100
100
<artifactId >jcl-over-slf4j</artifactId >
101
101
</dependency >
102
102
<dependency >
103
- <groupId >org.tinyjee.jgraphx </groupId >
103
+ <groupId >com.github.vlsi.mxgraph </groupId >
104
104
<artifactId >jgraphx</artifactId >
105
- <version >1.10.4.1 </version >
105
+ <version >4.2.2 </version >
106
106
</dependency >
107
107
<dependency >
108
108
<groupId >junit</groupId >
Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ protected void handleSequenceFlow() {
266
266
boundaryEdgeStyle .put (mxConstants .STYLE_EXIT_Y , 1.0 );
267
267
boundaryEdgeStyle .put (mxConstants .STYLE_ENTRY_X , 0.5 );
268
268
boundaryEdgeStyle .put (mxConstants .STYLE_ENTRY_Y , 1.0 );
269
- boundaryEdgeStyle .put (mxConstants .STYLE_EDGE , mxEdgeStyle .orthConnector );
269
+ boundaryEdgeStyle .put (mxConstants .STYLE_EDGE , mxEdgeStyle .OrthConnector );
270
270
graph .getStylesheet ().putCellStyle (STYLE_BOUNDARY_SEQUENCEFLOW , boundaryEdgeStyle );
271
271
272
272
for (SequenceFlow sequenceFlow : sequenceFlows .values ()) {
@@ -304,7 +304,7 @@ protected void handleAssociations() {
304
304
boundaryEdgeStyle .put (mxConstants .STYLE_EXIT_Y , 1.0 );
305
305
boundaryEdgeStyle .put (mxConstants .STYLE_ENTRY_X , 0.5 );
306
306
boundaryEdgeStyle .put (mxConstants .STYLE_ENTRY_Y , 1.0 );
307
- boundaryEdgeStyle .put (mxConstants .STYLE_EDGE , mxEdgeStyle .orthConnector );
307
+ boundaryEdgeStyle .put (mxConstants .STYLE_EDGE , mxEdgeStyle .OrthConnector );
308
308
graph .getStylesheet ().putCellStyle (STYLE_BOUNDARY_SEQUENCEFLOW , boundaryEdgeStyle );
309
309
310
310
for (Association association : associations .values ()) {
You can’t perform that action at this time.
0 commit comments