Skip to content

Commit

Permalink
NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmalloy committed Aug 10, 2024
1 parent 2ee3577 commit ead21c2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/jasper/domain/Ref.java
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ public <T> T getPlugin(String tag, Class<T> toValueType) {

@JsonIgnore
public boolean hasTag(String ...tag) {
if (tags == null) return false;
return Arrays.stream(tag).allMatch(m -> tags.stream().anyMatch(t -> matchesTag(m, t)));
}

Expand Down

0 comments on commit ead21c2

Please sign in to comment.