remove hasSubType(String s)

This commit is contained in:
igoudt 2017-08-03 22:20:32 +02:00
parent c094251061
commit f793504ba0
44 changed files with 170 additions and 213 deletions

View file

@ -36,10 +36,6 @@ public interface MageObject extends MageItem, Serializable {
boolean hasSubtype(SubType subtype, Game game);
default boolean hasSubtype(String subtype, Game game){
return hasSubtype(SubType.byDescription(subtype), game);
}
EnumSet<SuperType> getSuperType();
Abilities<Ability> getAbilities();