fixed Issue 72

This commit is contained in:
North 2011-05-09 22:12:13 +03:00
parent bf070098f7
commit 8e1d82dce6

View file

@ -209,8 +209,10 @@ public abstract class ExpansionSet implements Serializable {
} }
List<Card> newCards = new ArrayList<Card>(); List<Card> newCards = new ArrayList<Card>();
for (Class clazz : classes) { for (Class clazz : classes) {
if (clazz.getPackage().getName().equals(packageName)) {
newCards.add(createCard(clazz)); newCards.add(createCard(clazz));
} }
}
return newCards; return newCards;
} }