fix BaseTag constructor (#5095)

This commit is contained in:
Jake Potrebic 2021-01-21 10:57:13 -08:00
parent fc50bb8933
commit 8f5c84776f

View file

@ -717,6 +717,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ public BaseTag(@NotNull Class<T> clazz, @NotNull NamespacedKey key, @NotNull Collection<T> values, @NotNull Predicate<T>... globalPredicates) {
+ this.key = key != null ? key : NamespacedKey.randomKey();
+ this.tagged = clazz.isEnum() ? createEnumSet(clazz) : new HashSet<>();
+ this.tagged.addAll(values);
+ this.globalPredicates = Lists.newArrayList(globalPredicates);
+ }
+