- Removed debug info

This commit is contained in:
swordshine
2018-01-09 12:17:05 +08:00
parent 7bc14a526d
commit 5eba9bfc14

View File

@@ -1666,7 +1666,7 @@ public class CardFactoryUtil {
final Set<Integer> diffCMC = new HashSet<>(); final Set<Integer> diffCMC = new HashSet<>();
for (final Card card : paidList) { for (final Card card : paidList) {
diffCMC.add(card.getCMC()); diffCMC.add(card.getCMC());
}System.out.println(diffCMC); }
return diffCMC.size(); return diffCMC.size();
} }