Misc. Javadoc fixes

This commit is contained in:
zzz
2020-06-10 15:28:22 +00:00
parent 670e57b9e5
commit 6ec95a7f13
6 changed files with 4 additions and 7 deletions

View File

@ -391,7 +391,7 @@ class Packet {
/** /**
* What is the largest payload the sender of this packet wants to receive? * What is the largest payload the sender of this packet wants to receive?
* *
* @return Maximum payload size sender can receive (MRU) * @return Maximum payload size sender can receive (MRU) or zero if unset
*/ */
public int getOptionalMaxSize() { return _optionMaxSize; } public int getOptionalMaxSize() { return _optionMaxSize; }

View File

@ -1,8 +1,6 @@
package net.i2p.crypto; package net.i2p.crypto;
/** /**
* PRELIMINARY - unused - subject to change
*
* Base encryption algorithm type * Base encryption algorithm type
* *
* @since 0.9.18 * @since 0.9.18

View File

@ -11,8 +11,6 @@ import net.i2p.data.Hash;
import net.i2p.data.SimpleDataStructure; import net.i2p.data.SimpleDataStructure;
/** /**
* PRELIMINARY - subject to change
*
* Defines the properties for various encryption types * Defines the properties for various encryption types
* that I2P supports or may someday support. * that I2P supports or may someday support.
* *

View File

@ -21,7 +21,7 @@ import net.i2p.util.Log;
import net.i2p.util.OrderedProperties; import net.i2p.util.OrderedProperties;
/** /**
* PRELIMINARY - Subject to change - see proposal 123 * See proposal 123
* *
* @since 0.9.38 * @since 0.9.38
*/ */

View File

@ -361,6 +361,7 @@ public class FileUtil {
* Warning - this inefficiently allocates a StringBuilder of size maxNumLines*80, * Warning - this inefficiently allocates a StringBuilder of size maxNumLines*80,
* so don't make it too big. * so don't make it too big.
* Warning - converts \r\n to \n * Warning - converts \r\n to \n
* Warning - inefficient if startAtBeginning is false, see console LogsHelper for better version
* *
* @param startAtBeginning if true, read the first maxNumLines, otherwise read * @param startAtBeginning if true, read the first maxNumLines, otherwise read
* the last maxNumLines * the last maxNumLines

View File

@ -323,7 +323,7 @@ public class RatchetSKM extends SessionKeyManager implements SessionTagListener
/** /**
* Side effect - binds this session to the supplied destination. * Side effect - binds this session to the supplied destination.
* *
* @param the far-end Destination for this PublicKey if known, or null * @param d the far-end Destination for this PublicKey if known, or null
* @return true if registered * @return true if registered
* @since 0.9.47 * @since 0.9.47
*/ */