- CheckStyle.

This commit is contained in:
Chris
2012-03-07 18:15:16 +00:00
parent 1ef9c8aece
commit a8ebf5131a
4 changed files with 10 additions and 10 deletions

View File

@@ -71,7 +71,7 @@ public class BoosterGenerator {
} }
} }
private void MergeAllFacedCards() { private void mergeAllFacedCards() {
for (CardRarity v : CardRarity.values()) { for (CardRarity v : CardRarity.values()) {
List<CardPrinted> cp = new ArrayList<CardPrinted>(singleFacedByRarity.get(v)); List<CardPrinted> cp = new ArrayList<CardPrinted>(singleFacedByRarity.get(v));
cp.addAll(twoFacedByRarity.get(v)); cp.addAll(twoFacedByRarity.get(v));
@@ -92,7 +92,7 @@ public class BoosterGenerator {
for (final CardPrinted c : cards) { for (final CardPrinted c : cards) {
this.addToRarity(c); this.addToRarity(c);
} }
MergeAllFacedCards(); mergeAllFacedCards();
} }
/** /**
@@ -106,7 +106,7 @@ public class BoosterGenerator {
for (final Entry<CardPrinted, Integer> e : dPool) { for (final Entry<CardPrinted, Integer> e : dPool) {
this.addToRarity(e.getKey()); this.addToRarity(e.getKey());
} }
MergeAllFacedCards(); mergeAllFacedCards();
} }
/** /**
@@ -124,7 +124,7 @@ public class BoosterGenerator {
this.addToRarity(c); this.addToRarity(c);
// System.out.println(c); // System.out.println(c);
} }
MergeAllFacedCards(); mergeAllFacedCards();
// System.out.println("done"); // System.out.println("done");
} }