mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Add nullable annotation
This commit is contained in:
parent
a323e2d9b9
commit
a16f6a8e53
1 changed files with 4 additions and 0 deletions
|
@ -89,6 +89,8 @@ import java.util.List;
|
|||
import java.util.Optional;
|
||||
import java.util.UUID;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
import static com.google.common.base.Preconditions.checkArgument;
|
||||
import static com.google.common.base.Preconditions.checkNotNull;
|
||||
|
||||
|
@ -245,6 +247,8 @@ public abstract class EditableOfferDataModel extends OfferDataModel implements B
|
|||
fillPaymentAccounts();
|
||||
|
||||
PaymentAccount account;
|
||||
|
||||
@Nullable
|
||||
PaymentAccount lastSelectedPaymentAccount = getPreselectedPaymentAccount();
|
||||
if (lastSelectedPaymentAccount != null &&
|
||||
user.getPaymentAccounts() != null &&
|
||||
|
|
Loading…
Add table
Reference in a new issue