Skip to content

Commit

Permalink
SbpForm: Remove unused bank name variable declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Feb 2, 2025
1 parent 0890f0e commit 64e0018
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ public void addFormForEditAccount() {
TextField mobileNrField = addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.mobile"),
SbpAccount.getMobileNumber()).second;
mobileNrField.setMouseTransparent(false);
TextField BankNameField = addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.bank.name"),
SbpAccount.getBankName()).second;
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.bank.name"), SbpAccount.getBankName());
final TradeCurrency singleTradeCurrency = SbpAccount.getSingleTradeCurrency();
final String nameAndCode = singleTradeCurrency != null ? singleTradeCurrency.getNameAndCode() : "";
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("shared.currency"),
Expand Down

0 comments on commit 64e0018

Please sign in to comment.