diff --git a/apps/i2psnark/java/src/org/klomp/snark/dht/DHT.java b/apps/i2psnark/java/src/org/klomp/snark/dht/DHT.java index 5dc1c0a62..16d2edd65 100644 --- a/apps/i2psnark/java/src/org/klomp/snark/dht/DHT.java +++ b/apps/i2psnark/java/src/org/klomp/snark/dht/DHT.java @@ -44,7 +44,7 @@ public interface DHT { * @param max maximum number of peers to return * @param maxWait the maximum time to wait (ms) must be > 0 * @param annMax the number of peers to announce to - * @param maxWait the maximum total time to wait for announces, may be 0 to return immediately without waiting for acks + * @param annMaxWait the maximum total time to wait for announces, may be 0 to return immediately without waiting for acks * @return possibly empty (never null) */ public Collection getPeersAndAnnounce(byte[] ih, int max, long maxWait, int annMax, long annMaxWait); diff --git a/apps/i2psnark/java/src/org/klomp/snark/dht/KRPC.java b/apps/i2psnark/java/src/org/klomp/snark/dht/KRPC.java index bfaf808f8..e9fca89b1 100644 --- a/apps/i2psnark/java/src/org/klomp/snark/dht/KRPC.java +++ b/apps/i2psnark/java/src/org/klomp/snark/dht/KRPC.java @@ -317,7 +317,7 @@ public class KRPC implements I2PSessionMuxedListener, DHT { * @param max maximum number of peers to return * @param maxWait the maximum time to wait (ms) must be > 0 * @param annMax the number of peers to announce to - * @param maxWait the maximum total time to wait for announces, may be 0 to return immediately without waiting for acks + * @param annMaxWait the maximum total time to wait for announces, may be 0 to return immediately without waiting for acks * @return possibly empty (never null) */ public Collection getPeersAndAnnounce(byte[] ih, int max, long maxWait, int annMax, long annMaxWait) { diff --git a/core/java/src/net/i2p/data/Destination.java b/core/java/src/net/i2p/data/Destination.java index 76f643044..1eab390bb 100644 --- a/core/java/src/net/i2p/data/Destination.java +++ b/core/java/src/net/i2p/data/Destination.java @@ -108,7 +108,7 @@ public class Destination extends KeysAndCert { } /** - * @deprecated, was used only by Packet.java in streaming, now unused + * @deprecated was used only by Packet.java in streaming, now unused * * @throws IllegalStateException if data already set */