(final CardRules rules0, final String edition0, final CardRarity rarity0)
| 222 | } |
| 223 | |
| 224 | public PaperCard(final CardRules rules0, final String edition0, final CardRarity rarity0) { |
| 225 | this(rules0, edition0, rarity0, IPaperCard.DEFAULT_ART_INDEX, false, |
| 226 | IPaperCard.NO_COLLECTOR_NUMBER, IPaperCard.NO_ARTIST_NAME, IPaperCard.NO_FUNCTIONAL_VARIANT); |
| 227 | } |
| 228 | |
| 229 | public PaperCard(final PaperCard copyFrom, final PaperCardFlags flags) { |
| 230 | this(copyFrom.rules, copyFrom.edition, copyFrom.rarity, copyFrom.artIndex, copyFrom.foil, copyFrom.collectorNumber, |
nothing calls this directly
no test coverage detected