no jira - possible null pointer

This commit is contained in:
Andy Taylor 2017-04-05 11:56:32 +01:00
parent 22c6f40344
commit bffbca8f64
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ public final class LargeServerMessageImpl extends CoreMessage implements LargeSe
public String toString() { public String toString() {
return "LargeServerMessage[messageID=" + messageID + ",durable=" + isDurable() + ",userID=" + getUserID() + ",priority=" + this.getPriority() + return "LargeServerMessage[messageID=" + messageID + ",durable=" + isDurable() + ",userID=" + getUserID() + ",priority=" + this.getPriority() +
", timestamp=" + toDate(getTimestamp()) + ",expiration=" + toDate(getExpiration()) + ", timestamp=" + toDate(getTimestamp()) + ",expiration=" + toDate(getExpiration()) +
", durable=" + durable + ", address=" + getAddress() + ",properties=" + properties.toString() + "]@" + System.identityHashCode(this); ", durable=" + durable + ", address=" + getAddress() + ",properties=" + (properties != null ? properties.toString() : "") + "]@" + System.identityHashCode(this);
} }
@Override @Override