Made sets attr protected to allow subclassing

This commit is contained in:
leriomaggio
2021-07-04 21:12:11 +01:00
parent 8977303c00
commit 146f44f062

View File

@@ -11,7 +11,7 @@ import forge.screens.home.quest.DialogChooseSets;
public class DeckSetFilter extends DeckFormatFilter {
private final Set<String> sets = new HashSet<>();
protected final Set<String> sets = new HashSet<>();
public DeckSetFilter(ItemManager<? super DeckProxy> itemManager0, Collection<String> sets0, boolean allowReprints0) {
super(itemManager0);