remove default case

This commit is contained in:
RickyRister 2026-06-28 15:27:12 -07:00
parent e70011f4f9
commit 944df589fb

View file

@ -9,7 +9,6 @@ QList<TallyRow> Tally::compute(const QList<CardItem *> &cards, const TallyType t
return {};
case TallyType::Subtypes:
return SubtypeTally::countSubtypes(cards);
default:
return {};
}
}
return {};
}