javadoc fixes

This commit is contained in:
zzz
2013-10-14 17:00:14 +00:00
parent 811819af69
commit ded00300b4
3 changed files with 3 additions and 3 deletions

View File

@ -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<Hash> getPeersAndAnnounce(byte[] ih, int max, long maxWait, int annMax, long annMaxWait);

View File

@ -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<Hash> getPeersAndAnnounce(byte[] ih, int max, long maxWait, int annMax, long annMaxWait) {

View File

@ -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
*/