1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 11:25:59 -09:00

change to containsKey method to prevent stream exceptions (fixes , fixes , fixes , fixes , fixes , fixes , fixes , fixes , fixes )

This commit is contained in:
Evan Kranzler 2021-06-13 10:13:41 -04:00
parent b5223a4279
commit d202278ccd

View file

@ -261,7 +261,15 @@ public class AbilitiesImpl<T extends Ability> extends ArrayList<T> implements Ab
@Override
public boolean containsKey(UUID abilityId) { // TODO: remove
return stream().map(T::getId).anyMatch(abilityId::equals);
if (abilityId == null) {
return false;
}
for (T ability : this) {
if (ability != null && abilityId.equals(ability.getId())) {
return true;
}
}
return false;
}
@Override