Skip to content

Commit

Permalink
Not remove last character of textfield label. Fixes bisq-network#1998.
Browse files Browse the repository at this point in the history
  • Loading branch information
ripcurlx committed Nov 29, 2018
1 parent 74d5de3 commit 30a7f09
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ public ValidationResult validate(String input) {
}

private String getLabel() {
String label = BankUtil.getBranchIdLabel(countryCode);
return label.substring(0, label.length() - 1);
return BankUtil.getBranchIdLabel(countryCode);
}

}

0 comments on commit 30a7f09

Please sign in to comment.