This commit is contained in:
jrandom
2005-02-20 11:09:05 +00:00
committed by zzz
parent cbf6a70a1a
commit b9a4c3ba52

View File

@ -243,7 +243,9 @@ public class DatabaseLookupMessage extends I2NPMessageImpl {
buf.append("\n\tSearch Key: ").append(getSearchKey());
buf.append("\n\tFrom: ").append(getFrom());
buf.append("\n\tReply Tunnel: ").append(getReplyTunnel());
buf.append("\n\tDont Include Peers: ").append(_dontIncludePeers.size());
buf.append("\n\tDont Include Peers: ");
if (_dontIncludePeers != null)
buf.append(_dontIncludePeers.size());
buf.append("]");
return buf.toString();
}