mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-02 12:26:45 +00:00
fix typo
This commit is contained in:
parent
04c8017bb5
commit
20df1dbd8b
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ public class SendController extends WalletFormController implements Initializabl
|
|||
}
|
||||
|
||||
public Tab getPaymentTab() {
|
||||
s OptionalInt highestTabNo = paymentTabs.getTabs().stream().mapToInt(tab -> Integer.parseInt(tab.getText().trim())).max();
|
||||
OptionalInt highestTabNo = paymentTabs.getTabs().stream().mapToInt(tab -> Integer.parseInt(tab.getText().trim())).max();
|
||||
Tab tab = new Tab(" " + (highestTabNo.isPresent() ? highestTabNo.getAsInt() + 1 : 1) + " ");
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue