(final String fName, final Iterable<String> sets, final List<String> bannedCards)
| 93 | private final int index; |
| 94 | |
| 95 | public GameFormat(final String fName, final Iterable<String> sets, final List<String> bannedCards) { |
| 96 | this(fName, parseDate(DEFAULTDATE), sets, bannedCards, null, false, null, null, 0, FormatType.CUSTOM, FormatSubType.CUSTOM); |
| 97 | } |
| 98 | |
| 99 | public static final GameFormat NoFormat = new GameFormat("(none)", parseDate(DEFAULTDATE) , null, null, null, false |
| 100 | , null, null, Integer.MAX_VALUE, FormatType.CUSTOM, FormatSubType.CUSTOM); |
nothing calls this directly
no test coverage detected