mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- CheckStyle.
This commit is contained in:
@@ -32,14 +32,15 @@ public enum PhaseType {
|
||||
}
|
||||
|
||||
public static PhaseType getByIndex(int idx) {
|
||||
for( PhaseType ph : PhaseType.values() )
|
||||
{
|
||||
if ( ph.Index == idx ) return ph;
|
||||
for (PhaseType ph : PhaseType.values()) {
|
||||
|
||||
if (ph.Index == idx) {
|
||||
return ph;
|
||||
}
|
||||
}
|
||||
throw new InvalidParameterException("No PhaseType found with index " + idx);
|
||||
}
|
||||
|
||||
|
||||
public final boolean isAfter(final PhaseType phase) {
|
||||
return this.Index > phase.Index;
|
||||
}
|
||||
|
||||
@@ -391,8 +391,8 @@ public class PhaseUtil {
|
||||
// Index of field; computer is 0, human is 1
|
||||
int i = p.isComputer() ? 0 : 1;
|
||||
|
||||
switch(s)
|
||||
{
|
||||
switch(s) {
|
||||
|
||||
case UPKEEP:
|
||||
lbl = t.getFieldControls().get(i).getView().getLblUpkeep();
|
||||
break;
|
||||
|
||||
@@ -77,7 +77,8 @@ public final class MenuCommon extends MenuBase<Deck> {
|
||||
// The only remaining reference to global variable!
|
||||
|
||||
|
||||
randomDeck.getMain().addAllFlat(Predicate.not(CardRules.Predicates.Presets.IS_BASIC_LAND).random(CardDb.instance().getAllUniqueCards(), CardPrinted.FN_GET_RULES, 15*5));
|
||||
randomDeck.getMain().addAllFlat(Predicate.not(CardRules.Predicates.Presets.IS_BASIC_LAND)
|
||||
.random(CardDb.instance().getAllUniqueCards(), CardPrinted.FN_GET_RULES, 15 * 5));
|
||||
randomDeck.getMain().add("Plains");
|
||||
randomDeck.getMain().add("Island");
|
||||
randomDeck.getMain().add("Swamp");
|
||||
|
||||
@@ -343,8 +343,8 @@ public class PlayArea extends CardPanelContainer implements CardPanelMouseListen
|
||||
rows.add(insertIndex == -1 ? rows.size() : insertIndex, currentRow);
|
||||
}
|
||||
catch (ArrayIndexOutOfBoundsException e) {
|
||||
System.out.println("ArrayIndex Out of Bounds when trying to add row in PlayArea. Someone fix this logic, " +
|
||||
" I believe it causes the no cards loading in issue we've noticed.");
|
||||
System.out.println("ArrayIndex Out of Bounds when trying to add row in PlayArea. Someone fix this logic, "
|
||||
+ " I believe it causes the no cards loading in issue we've noticed.");
|
||||
// TODO: There's a crash here, maybe when rows == [null] and currentRow == [[Plant Wall]] and insertIndex is 0
|
||||
}
|
||||
currentRow = new CardStackRow();
|
||||
@@ -361,8 +361,8 @@ public class PlayArea extends CardPanelContainer implements CardPanelMouseListen
|
||||
rows.add(insertIndex == -1 ? rows.size() : insertIndex, currentRow);
|
||||
}
|
||||
catch (ArrayIndexOutOfBoundsException e) {
|
||||
System.out.println("ArrayIndex Out of Bounds when trying to add row in PlayArea. Someone fix this logic, " +
|
||||
" I believe it causes the no cards loading in issue we've noticed.");
|
||||
System.out.println("ArrayIndex Out of Bounds when trying to add row in PlayArea. Someone fix this logic, "
|
||||
+ " I believe it causes the no cards loading in issue we've noticed.");
|
||||
// TODO: There's a crash here, maybe when rows == [null] and currentRow == [[Plant Wall]] and insertIndex is 0
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user