Skip to content

Commit

Permalink
modified BetaProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
codeyung committed Aug 23, 2020
1 parent 3e326ef commit 370ea27
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ public void process() {
Iterator iterator = this.iterator();
while (iterator.hasNext()) {
T handler = (T) iterator.next();
handler.execute();
if (handler.executeFlag()) {
handler.execute();
}
}
this.processSuccessor();
}
Expand Down

0 comments on commit 370ea27

Please sign in to comment.