mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Initialize Set to avoid nullpointer access
This commit is contained in:
parent
f25d8c85de
commit
83aa0d7a77
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
|
||||||
private final SortedList<WithdrawalListItem> sortedList = new SortedList<>(observableList);
|
private final SortedList<WithdrawalListItem> sortedList = new SortedList<>(observableList);
|
||||||
private Set<WithdrawalListItem> selectedItems = new HashSet<>();
|
private Set<WithdrawalListItem> selectedItems = new HashSet<>();
|
||||||
private BalanceListener balanceListener;
|
private BalanceListener balanceListener;
|
||||||
private Set<String> fromAddresses;
|
private Set<String> fromAddresses = new HashSet<>();
|
||||||
private Coin totalAvailableAmountOfSelectedItems = Coin.ZERO;
|
private Coin totalAvailableAmountOfSelectedItems = Coin.ZERO;
|
||||||
private Coin amountAsCoin = Coin.ZERO;
|
private Coin amountAsCoin = Coin.ZERO;
|
||||||
private Coin sendersAmount = Coin.ZERO;
|
private Coin sendersAmount = Coin.ZERO;
|
||||||
|
|
Loading…
Add table
Reference in a new issue