Skip to content

Commit

Permalink
code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Aug 30, 2024
1 parent e7f1c8c commit d7c61f5
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,12 @@ public void init() throws BPMNModelException {
this.createBPMNGatewayByNode((Element) child);
} else if (BPMNModel.isDataObject(child)) {
this.createBPMNDataObjectByNode((Element) child);

} else if (BPMNModel.isTextAnnotation(child)) {
this.createBPMNTextAnnotationByNode((Element) child);

} else if (BPMNModel.isSequenceFlow(child)) {
this.createBPMNSequenceFlowByNode((Element) child);
} else if (BPMNModel.isAssociation(child)) {
this.createBPMNAssociationByNode((Element) child);

} else if (BPMNModel.isLaneSet(child)) {
this.createBPMNLanesByNode((Element) child);
} else {
Expand Down Expand Up @@ -1093,19 +1090,6 @@ public <T> Set<? extends BPMNElementNode> findElementNodes(Predicate<BPMNElement
return result;

}
/**
* Returns all BPMNFlowElements contained in this process
*
* @return
*/
// public Set<BPMNElementNode> getBPMNNodes() {
// Set<BPMNElementNode> result = new LinkedHashSet<BPMNElementNode>();
//
// result.addAll(this.getActivities());
// result.addAll(this.getEvents());
// result.addAll(this.getGateways());
// return result;
// }

/**
* Finds a BPMN Edge Element by given id. An Edge can be a SequenceFlow, a
Expand Down

0 comments on commit d7c61f5

Please sign in to comment.