use of mage.constants.Rarity in project mage by magefree.
the class CardViewRarityComparator method compare.
@Override
public int compare(CardView o1, CardView o2) {
Rarity r1 = o1.getRarity();
Rarity r2 = o2.getRarity();
return Integer.compare(r1 == null ? 0 : r1.getSorting(), r2 == null ? 0 : r2.getSorting());
}
Aggregations