Skip to content

Commit

Permalink
feat: allow not specifying a default order in reactive lifecycles
Browse files Browse the repository at this point in the history
  • Loading branch information
mimbrero committed Sep 3, 2024
1 parent 4e03d06 commit 0001815
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ public class ReactiveBotLifecycleConfiguration implements BotLifecycleConfigurat
private String order;

@Override
public void validate(ValidationReport report) {
if (order == null || order.isBlank()) report.addError("order", "missing or empty order");
}
public void validate(ValidationReport report) {}

@Override
public BotLifecycleType getType() {
Expand Down

0 comments on commit 0001815

Please sign in to comment.