mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-09-20 04:54:38 -04:00
Add null check
This commit is contained in:
parent
625a249051
commit
5b7bff1a89
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ public class ProtectedMailboxStorageEntry extends ProtectedStorageEntry {
|
|||
@Override
|
||||
public String toString() {
|
||||
return "ProtectedMailboxData{" +
|
||||
"receiversPubKey.hashCode()=" + receiversPubKey.hashCode() +
|
||||
"receiversPubKey.hashCode()=" + (receiversPubKey != null ? receiversPubKey.hashCode() : "") +
|
||||
"} " + super.toString();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue