refactor: rename "remixed" to "reshuffled" (#12755)

This commit is contained in:
xenohedron 2024-09-01 01:08:26 -04:00 committed by GitHub
parent d7fa7f673d
commit 54874a59b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 88 additions and 88 deletions

View file

@ -21,7 +21,7 @@ public class TournamentTypeView implements Serializable {
private final boolean cubeBooster;
private final boolean elimination;
private final boolean random;
private final boolean remixed;
private final boolean reshuffled;
private final boolean richMan;
private final boolean jumpstart;
@ -35,7 +35,7 @@ public class TournamentTypeView implements Serializable {
this.cubeBooster = tournamentType.isCubeBooster();
this.elimination = tournamentType.isElimination();
this.random = tournamentType.isRandom();
this.remixed = tournamentType.isRemixed();
this.reshuffled = tournamentType.isReshuffled();
this.richMan = tournamentType.isRichMan();
this.jumpstart = tournamentType.isJumpstart();
}
@ -81,8 +81,8 @@ public class TournamentTypeView implements Serializable {
return random;
}
public boolean isRemixed() {
return remixed;
public boolean isReshuffled() {
return reshuffled;
}
public boolean isRichMan() {