forked from I2P_Developers/i2p.i2p
findbugs all over
This commit is contained in:
@ -812,8 +812,14 @@ class ClientMessageEventListener implements I2CPMessageReader.I2CPMessageEventLi
|
||||
if (_log.shouldInfo())
|
||||
_log.info("Got Blinding info");
|
||||
BlindData bd = message.getBlindData();
|
||||
if (bd == null) {
|
||||
// hash or hostname lookup? don't support for now
|
||||
if (_log.shouldWarn())
|
||||
_log.warn("Unsupported BlindingInfo type: " + message);
|
||||
return;
|
||||
}
|
||||
SigningPublicKey spk = bd.getUnblindedPubKey();
|
||||
if (spk == null || bd == null) {
|
||||
if (spk == null) {
|
||||
// hash or hostname lookup? don't support for now
|
||||
if (_log.shouldWarn())
|
||||
_log.warn("Unsupported BlindingInfo type: " + message);
|
||||
|
@ -287,7 +287,7 @@ class InboundMessageDistributor implements GarlicMessageReceiver.CloveReceiver {
|
||||
|
||||
// ... and inject it.
|
||||
if (_log.shouldLog(Log.INFO))
|
||||
_log.info("Storing garlic RI down tunnel for: " + dsm.getKey() + " sent to: " + _client.toBase32());
|
||||
_log.info("Storing garlic RI down tunnel for: " + dsm.getKey());
|
||||
_context.inNetMessagePool().add(dsm, null, null);
|
||||
}
|
||||
} else if (_client != null && type == DatabaseSearchReplyMessage.MESSAGE_TYPE) {
|
||||
|
Reference in New Issue
Block a user