mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-01 01:32:17 +01:00
SbpForm: Remove unused bank name variable declaration
This commit is contained in:
parent
0890f0eac0
commit
64e0018344
1 changed files with 1 additions and 2 deletions
|
@ -110,8 +110,7 @@ public class SbpForm extends PaymentMethodForm {
|
||||||
TextField mobileNrField = addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.mobile"),
|
TextField mobileNrField = addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.mobile"),
|
||||||
SbpAccount.getMobileNumber()).second;
|
SbpAccount.getMobileNumber()).second;
|
||||||
mobileNrField.setMouseTransparent(false);
|
mobileNrField.setMouseTransparent(false);
|
||||||
TextField BankNameField = addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.bank.name"),
|
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.bank.name"), SbpAccount.getBankName());
|
||||||
SbpAccount.getBankName()).second;
|
|
||||||
final TradeCurrency singleTradeCurrency = SbpAccount.getSingleTradeCurrency();
|
final TradeCurrency singleTradeCurrency = SbpAccount.getSingleTradeCurrency();
|
||||||
final String nameAndCode = singleTradeCurrency != null ? singleTradeCurrency.getNameAndCode() : "";
|
final String nameAndCode = singleTradeCurrency != null ? singleTradeCurrency.getNameAndCode() : "";
|
||||||
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("shared.currency"),
|
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("shared.currency"),
|
||||||
|
|
Loading…
Add table
Reference in a new issue