javadoc fixes part 7 (ticket #1894)

This commit is contained in:
zzz
2017-01-26 21:55:04 +00:00
parent d196047382
commit b970912cc1
10 changed files with 16 additions and 16 deletions

View File

@ -73,7 +73,7 @@ public abstract class FastI2NPMessageImpl extends I2NPMessageImpl {
* Ignore, but save, the checksum, to be used later if necessary.
*
* @param maxLen read no more than this many bytes from data starting at offset, even if it is longer
* This includes the type byte only if type < 0
* This includes the type byte only if type &lt; 0
* @throws IllegalStateException if called twice, to protect saved checksum
*/
@Override

View File

@ -189,7 +189,7 @@ public abstract class I2NPMessageImpl extends DataStructureImpl implements I2NPM
* we can use a large buffer but prevent the reader from reading off the end.
*
* @param maxLen read no more than this many bytes from data starting at offset, even if it is longer
* This includes the type byte only if type < 0
* This includes the type byte only if type &lt; 0
* @since 0.8.12
*/
public int readBytes(byte data[], int type, int offset, int maxLen) throws I2NPMessageException {

View File

@ -19,8 +19,8 @@ abstract class ThreadDump {
* It waits for the signal to complete (which should be fast)
* but does not wait for the dump itself.
*
* @param secondsToWait if <= 0, don't wait
* @return success, false if windows or no wrapper, true if secondsToWait <= 0,
* @param secondsToWait if &lt;= 0, don't wait
* @return success, false if windows or no wrapper, true if secondsToWait &lt;= 0,
false if timed out, dump result otherwise
*/
public static boolean dump(I2PAppContext context, int secondsToWait) {