Javadoc fix.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137368 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3e480bf2ad
commit
eeb224c2a6
|
@ -61,7 +61,7 @@ import org.apache.commons.lang.builder.HashCodeBuilder;
|
||||||
import org.apache.commons.lang.builder.ToStringBuilder;
|
import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
import org.apache.commons.lang.builder.ToStringStyle;
|
import org.apache.commons.lang.builder.ToStringStyle;
|
||||||
/**
|
/**
|
||||||
* <p><code>ArrayUtils</code> contains utility methods for working for
|
* <p><code>ArrayUtils</code> contains utility methods for working with
|
||||||
* arrays.</p>
|
* arrays.</p>
|
||||||
*
|
*
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
|
@ -69,7 +69,7 @@ import org.apache.commons.lang.builder.ToStringStyle;
|
||||||
* @author <a href="mailto:fredrik@westermarck.com">Fredrik Westermarck</a>
|
* @author <a href="mailto:fredrik@westermarck.com">Fredrik Westermarck</a>
|
||||||
* @author Nikolay Metchev
|
* @author Nikolay Metchev
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @version $Id: ArrayUtils.java,v 1.11 2003/04/09 01:04:47 ggregory Exp $
|
* @version $Id: ArrayUtils.java,v 1.12 2003/06/16 02:28:16 bayard Exp $
|
||||||
*/
|
*/
|
||||||
public class ArrayUtils {
|
public class ArrayUtils {
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ import java.util.Random;
|
||||||
*
|
*
|
||||||
* @author Henri Yandell
|
* @author Henri Yandell
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
* @version $Id: JVMRandom.java,v 1.5 2003/05/14 02:41:26 bayard Exp $
|
* @version $Id: JVMRandom.java,v 1.6 2003/06/16 02:26:41 bayard Exp $
|
||||||
*/
|
*/
|
||||||
public final class JVMRandom extends Random {
|
public final class JVMRandom extends Random {
|
||||||
|
|
||||||
|
@ -73,16 +73,19 @@ public final class JVMRandom extends Random {
|
||||||
this.constructed = true;
|
this.constructed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Unsupported in 2.0 */
|
||||||
public synchronized void setSeed(long seed) {
|
public synchronized void setSeed(long seed) {
|
||||||
if (this.constructed) {
|
if (this.constructed) {
|
||||||
throw new UnsupportedOperationException();
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Unsupported in 2.0 */
|
||||||
public synchronized double nextGaussian() {
|
public synchronized double nextGaussian() {
|
||||||
throw new UnsupportedOperationException();
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Unsupported in 2.0 */
|
||||||
public void nextBytes(byte[] byteArray) {
|
public void nextBytes(byte[] byteArray) {
|
||||||
throw new UnsupportedOperationException();
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue