javadoc fixes part 6 (ticket #1894)

This commit is contained in:
zzz
2017-01-26 21:45:47 +00:00
parent eefb36cb99
commit d196047382
9 changed files with 13 additions and 16 deletions

View File

@@ -114,7 +114,7 @@ public interface IRandomStandalone extends Cloneable {
*
* @return the next 8 bits of random data generated from this instance.
* @throws IllegalStateException if the instance is not yet initialised.
* @throws LimLimitReachedExceptionStandalone this instance has reached its
* @throws LimitReachedExceptionStandalone this instance has reached its
* theoretical limit for generating non-repetitive pseudo-random data.
*/
byte nextByte() throws IllegalStateException, LimitReachedExceptionStandalone;
@@ -131,7 +131,7 @@ public interface IRandomStandalone extends Cloneable {
* @param length the maximum number of required random bytes. This method
* does nothing if this parameter is less than <code>1</code>.
* @throws IllegalStateException if the instance is not yet initialised.
* @throws LimitLimitReachedExceptionStandalonehis instance has reached its
* @throws LimitReachedExceptionStandalone this instance has reached its
* theoretical limit for generating non-repetitive pseudo-random data.
*/
void nextBytes(byte[] out, int offset, int length)