mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-09-21 21:44:44 -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
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "ProtectedMailboxData{" +
|
return "ProtectedMailboxData{" +
|
||||||
"receiversPubKey.hashCode()=" + receiversPubKey.hashCode() +
|
"receiversPubKey.hashCode()=" + (receiversPubKey != null ? receiversPubKey.hashCode() : "") +
|
||||||
"} " + super.toString();
|
"} " + super.toString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue