Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
Issue #237
  • Loading branch information
rsoika committed Aug 9, 2024
1 parent 109471a commit 7c62092
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ public class BPMNFlowIterator<T> implements Iterator<BPMNElementNode> {
* @param filter
* @throws BPMNValidationException
*/
public BPMNFlowIterator(BPMNElementNode bpmnElementNode, Predicate<BPMNElementNode> filter)
throws BPMNValidationException {
public BPMNFlowIterator(BPMNElementNode bpmnElementNode, Predicate<BPMNElementNode> filter) {
this.filter = filter;
this.targetNodes = new ArrayList<>();
this.index = 0;
Expand Down

0 comments on commit 7c62092

Please sign in to comment.