Refactor: Remove unused fields in InnerDecklistNode (#6086)

This commit is contained in:
RickyRister 2025-08-22 20:26:16 -07:00 committed by GitHub
parent f31d30bf84
commit d5d9f9bedc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 21 deletions

View file

@ -93,8 +93,7 @@ int AbstractDecklistNode::depth() const
}
InnerDecklistNode::InnerDecklistNode(InnerDecklistNode *other, InnerDecklistNode *_parent)
: AbstractDecklistNode(_parent), name(other->getName()), cardSetShortName(other->getCardSetShortName()),
cardCollectorNumber(other->getCardCollectorNumber()), cardProviderId(other->getCardProviderId())
: AbstractDecklistNode(_parent), name(other->getName())
{
for (int i = 0; i < other->size(); ++i) {
auto *inner = dynamic_cast<InnerDecklistNode *>(other->at(i));