Skip to content

Commit

Permalink
Format code [skip actions]
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 27, 2023
1 parent 83d447c commit 308686d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,8 @@ private void realCallEvent(@Nonnull ScriptArgs params) {
.filter(
t ->
t.getName().substring(13).equals(String.valueOf(params.param1))
&& (t.getSource().isEmpty() || t.getSource().equals(params.getEventSource())))
&& (t.getSource().isEmpty()
|| t.getSource().equals(params.getEventSource())))
.collect(Collectors.toSet());
default -> this.getTriggersByEvent(eventType).stream()
.filter(
Expand Down

0 comments on commit 308686d

Please sign in to comment.