Skip to content

Commit

Permalink
FISH-7158: solving formatting from PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
breakponchito committed Oct 17, 2023
1 parent 24ef5e1 commit 67c393c
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,9 @@ public boolean isUpgrade() {
*
* @return true if the warmup is on.
*/
public boolean isWarmup() { return warmup; }
public boolean isWarmup() {
return warmup;
}

/**
*
Expand Down Expand Up @@ -471,12 +473,13 @@ else if(tsb.isFalse())
upgrade = true;
else if(tsb.isFalse())
upgrade = false;

tsb = getBoolean("warmup");
if (tsb.isTrue())
if (tsb.isTrue()) {
warmup = true;
else if (tsb.isFalse())
} else if (tsb.isFalse()) {
warmup = false;
}
}

private void finalSetup() throws GFLauncherException {
Expand Down

0 comments on commit 67c393c

Please sign in to comment.