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:
Gary D. Gregory 2003-12-29 00:43:09 +00:00
parent 6aee782c67
commit 77f538e305
1 changed files with 4 additions and 1 deletions

View File

@ -62,7 +62,7 @@ import java.util.Random;
*
* @author Henri Yandell
* @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 {
@ -71,6 +71,9 @@ public final class JVMRandom extends Random {
*/
private boolean constructed = false;
/**
* Constructs a new instance.
*/
public JVMRandom() {
this.constructed = true;
}