Severity Description Resource In Folder Location Creation Time

Superfluous semicolon	RandomUtilsTest.java	Apache Jakarta Commons/lang/src/test/org/apache/commons/lang/math	line 315	July 18, 2003 8:21:31 PM


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137478 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2003-07-20 18:58:46 +00:00
parent f5d4e8456e
commit 82c4c69189
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@
* Test cases for the {@link RandomUtils} class. * Test cases for the {@link RandomUtils} class.
* *
* @author <a href="mailto:phil@steitz.com">Phil Steitz</a> * @author <a href="mailto:phil@steitz.com">Phil Steitz</a>
* @version $Revision: 1.3 $ $Date: 2003/06/09 21:36:03 $ * @version $Revision: 1.4 $ $Date: 2003/07/20 18:58:46 $
*/ */
public final class RandomUtilsTest extends TestCase { public final class RandomUtilsTest extends TestCase {
@ -312,7 +312,7 @@ public void testSetSeed() {
RandomUtils.JVM_RANDOM.setSeed(1000); RandomUtils.JVM_RANDOM.setSeed(1000);
fail("expecting UnsupportedOperationException"); fail("expecting UnsupportedOperationException");
} catch (UnsupportedOperationException ex) { } catch (UnsupportedOperationException ex) {
; // empty
} }
} }