Skip to content

Commit

Permalink
fixed lane resolving
Browse files Browse the repository at this point in the history
Issue imixs#227
  • Loading branch information
rsoika committed Apr 6, 2023
1 parent e4b433f commit 6cfc1fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public void setPosition(double x, double y) {

// update lane flowNodeRef if the element is part of a pool with lanes....
if (BPMNTypes.isFlowElement(this)
&& this.getBpmnProcess().getProcessType() == BPMNTypes.PROCESS_TYPE_PRIVATE) {
&& BPMNTypes.PROCESS_TYPE_PRIVATE.equals(this.getBpmnProcess().getProcessType())) {
// get all lanes and test if a lane is the containing lane according to the
// position.
Set<Lane> lanes = this.getBpmnProcess().getLanes();
Expand Down

0 comments on commit 6cfc1fa

Please sign in to comment.