Merge pull request #1052 from brodee/master

code review comments for chaos/random booster draft:
This commit is contained in:
LevelX2 2015-06-24 06:56:45 +02:00
commit ca9e52f99b
13 changed files with 106 additions and 84 deletions

View file

@ -46,7 +46,7 @@ public class TournamentTypeView implements Serializable {
private final boolean limited;
private final boolean cubeBooster;
private final boolean elimination;
private final boolean chaos;
private final boolean random;
public TournamentTypeView(TournamentType tournamentType) {
@ -58,7 +58,7 @@ public class TournamentTypeView implements Serializable {
this.limited = tournamentType.isLimited();
this.cubeBooster = tournamentType.isCubeBooster();
this.elimination = tournamentType.isElimination();
this.chaos = tournamentType.isChaos();
this.random = tournamentType.isRandom();
}
@Override
@ -98,7 +98,7 @@ public class TournamentTypeView implements Serializable {
return elimination;
}
public boolean isChaos(){
return chaos;
public boolean isRandom(){
return random;
}
}