diff --git a/core/java/src/net/i2p/data/i2cp/BlindingInfoMessage.java b/core/java/src/net/i2p/data/i2cp/BlindingInfoMessage.java index 9c8288377..0dce9de1b 100644 --- a/core/java/src/net/i2p/data/i2cp/BlindingInfoMessage.java +++ b/core/java/src/net/i2p/data/i2cp/BlindingInfoMessage.java @@ -58,7 +58,6 @@ public class BlindingInfoMessage extends I2CPMessageImpl { * Will create a DEST or KEY message type, depending on whether * BlindData has the full destination. * - * @param expiration ms from now or 0 for forever */ public BlindingInfoMessage(BlindData bd, SessionId id) { this(id, bd.getExpiration(), bd.getAuthType(), bd.getBlindedSigType(), bd.getAuthPrivKey(), bd.getSecret()); diff --git a/router/java/src/net/i2p/router/tunnel/IVValidator.java b/router/java/src/net/i2p/router/tunnel/IVValidator.java index 8dccfa8cd..07185e931 100644 --- a/router/java/src/net/i2p/router/tunnel/IVValidator.java +++ b/router/java/src/net/i2p/router/tunnel/IVValidator.java @@ -17,7 +17,7 @@ public interface IVValidator { * dvorak for pointing out that tagging! * * @param iv data will not be modified - * @param iv payload will not be modified + * @param payload will not be modified */ public boolean receiveIV(byte iv[], int ivOffset, byte payload[], int payloadOffset); }