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>
This commit is contained in:
Phan Huy Tran 2025-05-07 11:22:37 +00:00
commit 56f1f325f2
No known key found for this signature in database
GPG key ID: 944223E4D46B7412
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;
}