Skip to content

Commit

Permalink
Merge pull request #1625 from ripcurlx/fix-double-colon-usage
Browse files Browse the repository at this point in the history
Fix double colon usage
  • Loading branch information
ManfredKarrer authored Aug 15, 2018
2 parents 276d526 + a85f8de commit 0c2f582
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static int addFormForBuyer(GridPane gridPane, int gridRow,
addLabelTextFieldWithCopyIcon(gridPane, ++gridRow, Res.getWithCol("payment.account.fullName"),
payload.getHolderName());
FormBuilder.addLabelTextFieldWithCopyIcon(gridPane, ++gridRow,
Res.getWithCol("payment.bank.country"),
Res.get("payment.bank.country"),
CountryUtil.getNameAndCode(((MoneyGramAccountPayload) paymentAccountPayload).getCountryCode()));
if (BankUtil.isStateRequired(payload.getCountryCode()))
addLabelTextFieldWithCopyIcon(gridPane, ++gridRow, Res.get("payment.account.state"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static int addFormForBuyer(GridPane gridPane, int gridRow,
addLabelTextFieldWithCopyIcon(gridPane, ++gridRow, title, value);

FormBuilder.addLabelTextFieldWithCopyIcon(gridPane, ++gridRow,
Res.getWithCol("payment.bank.country"),
Res.get("payment.bank.country"),
CountryUtil.getNameAndCode(sepaAccountPayload.getCountryCode()));
// IBAN, BIC will not be translated
FormBuilder.addLabelTextFieldWithCopyIcon(gridPane, ++gridRow, "IBAN:", sepaAccountPayload.getIban());
Expand Down Expand Up @@ -127,7 +127,7 @@ public void addFormForAddAccount() {
});


FormBuilder.addLabel(gridPane, ++gridRow, Res.getWithCol("payment.bank.country"));
FormBuilder.addLabel(gridPane, ++gridRow, Res.get("payment.bank.country"));
HBox hBox = new HBox();
hBox.setSpacing(10);
ComboBox<Country> countryComboBox = new ComboBox<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static int addFormForBuyer(GridPane gridPane, int gridRow,
addLabelTextFieldWithCopyIcon(gridPane, ++gridRow, title, value);

FormBuilder.addLabelTextFieldWithCopyIcon(gridPane, ++gridRow,
Res.getWithCol("payment.bank.country"),
Res.get("payment.bank.country"),
CountryUtil.getNameAndCode(sepaInstantAccountPayload.getCountryCode()));
// IBAN, BIC will not be translated
FormBuilder.addLabelTextFieldWithCopyIcon(gridPane, ++gridRow, "IBAN:", sepaInstantAccountPayload.getIban());
Expand Down Expand Up @@ -127,7 +127,7 @@ public void addFormForAddAccount() {
});


FormBuilder.addLabel(gridPane, ++gridRow, Res.getWithCol("payment.bank.country"));
FormBuilder.addLabel(gridPane, ++gridRow, Res.get("payment.bank.country"));
HBox hBox = new HBox();
hBox.setSpacing(10);
ComboBox<Country> countryComboBox = new ComboBox<>();
Expand Down

0 comments on commit 0c2f582

Please sign in to comment.