Merge fix

This commit is contained in:
Oleg Agafonov 2023-11-18 15:36:55 +04:00
parent 515444affd
commit 4f081c0918
2 changed files with 7 additions and 1 deletions

View file

@ -21,6 +21,9 @@ public class SourceMatchesFilterCondition implements Condition {
}
public SourceMatchesFilterCondition(String text, FilterPermanent filter) {
if (filter == null) {
throw new IllegalArgumentException("Wrong code usage: filter param can't be empty");
}
this.FILTER = filter;
this.text = text;
}