mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Removing error when running server where Creeping Mold would have a predicate error because 'inference variable T#1 has incompatible bounds' -- I don't fully understand the error, but at least this fix seems to work.
This commit is contained in:
parent
f461899eec
commit
30e0ef863d
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ public final class Predicates {
|
|||
* @return
|
||||
*/
|
||||
public static <T> Predicate<T> or(Predicate<? super T>... components) {
|
||||
return new OrPredicate<>(defensiveCopy(components));
|
||||
return new OrPredicate<T>(defensiveCopy(components));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue