Add missing Javadoc comment.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137734 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6aee782c67
commit
77f538e305
|
@ -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.8 2003/08/18 02:22:24 bayard Exp $
|
* @version $Id: JVMRandom.java,v 1.9 2003/12/29 00:43:09 ggregory Exp $
|
||||||
*/
|
*/
|
||||||
public final class JVMRandom extends Random {
|
public final class JVMRandom extends Random {
|
||||||
|
|
||||||
|
@ -71,6 +71,9 @@ public final class JVMRandom extends Random {
|
||||||
*/
|
*/
|
||||||
private boolean constructed = false;
|
private boolean constructed = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new instance.
|
||||||
|
*/
|
||||||
public JVMRandom() {
|
public JVMRandom() {
|
||||||
this.constructed = true;
|
this.constructed = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue