Compare commits

..

3 commits

Author SHA1 Message Date
56f1f325f2
Merge pull request 'refactor: remove useless field' (!162) from idk into main
All checks were successful
Release / Release (push) Successful in 58s
Release / Build Frontend Image (push) Successful in 28s
Release / Build Backend Image (push) Successful in 38s
Reviewed-on: #162
Reviewed-by: Jan K9f <jan@kjan.email>
2025-05-07 11:22:37 +00:00
99942b5902
Merge branch 'main' into idk
All checks were successful
CI / Get Changed Files (pull_request) Successful in 9s
CI / Docker frontend validation (pull_request) Successful in 12s
CI / Docker backend validation (pull_request) Successful in 40s
CI / eslint (pull_request) Has been skipped
CI / oxlint (pull_request) Has been skipped
CI / prettier (pull_request) Has been skipped
CI / test-build (pull_request) Has been skipped
CI / Checkstyle Main (pull_request) Successful in 53s
2025-05-07 11:20:28 +00:00
Phan Huy Tran
adf0b27d27 refactor: remove useless field
All checks were successful
CI / Get Changed Files (pull_request) Successful in 6s
CI / Docker frontend validation (pull_request) Successful in 8s
CI / eslint (pull_request) Has been skipped
CI / oxlint (pull_request) Has been skipped
CI / prettier (pull_request) Has been skipped
CI / test-build (pull_request) Has been skipped
CI / Docker backend validation (pull_request) Successful in 1m2s
CI / Checkstyle Main (pull_request) Successful in 1m3s
2025-05-07 13:20:18 +02:00
2 changed files with 0 additions and 8 deletions

View file

@ -67,7 +67,6 @@ public class SlotService {
SpinResult spinResult = new SpinResult();
spinResult.setStatus(status);
spinResult.setAmount(resultAmount);
spinResult.setWin(isWin);
return spinResult;
}

View file

@ -11,14 +11,7 @@ import java.util.List;
@Setter
@NoArgsConstructor
public class SpinResult {
public SpinResult(String status, BigDecimal amount, boolean isWin) {
this.status = status;
this.amount = amount;
this.isWin = isWin;
}
private String status;
private BigDecimal amount;
private boolean isWin;
private List<List<Symbol>> resultMatrix;
}