Severity Description Resource In Folder Location Creation Time

Superfluous semicolon	NumberUtilsTest.java	Apache Jakarta Commons/lang/src/test/org/apache/commons/lang/math	line 157	July 20, 2003 12:01:26 PM
	Superfluous semicolon	NumberUtilsTest.java	Apache Jakarta Commons/lang/src/test/org/apache/commons/lang/math	line 168	July 20, 2003 12:01:26 PM
	Superfluous semicolon	NumberUtilsTest.java	Apache Jakarta Commons/lang/src/test/org/apache/commons/lang/math	line 179	July 20, 2003 12:01:26 PM
	Superfluous semicolon	NumberUtilsTest.java	Apache Jakarta Commons/lang/src/test/org/apache/commons/lang/math	line 190	July 20, 2003 12:01:26 PM
	Superfluous semicolon	NumberUtilsTest.java	Apache Jakarta Commons/lang/src/test/org/apache/commons/lang/math	line 201	July 20, 2003 12:01:26 PM
	Superfluous semicolon	NumberUtilsTest.java	Apache Jakarta Commons/lang/src/test/org/apache/commons/lang/math	line 212	July 20, 2003 12:01:26 PM


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137483 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2003-07-21 19:42:12 +00:00
parent 3d3276ba5a
commit 0e08941e69

View File

@ -72,7 +72,7 @@
* @author Phil Steitz
* @author Stephen Colebourne
* @author Matthew Hawthorne
* @version $Id: NumberUtilsTest.java,v 1.3 2003/07/20 16:03:21 scolebourne Exp $
* @version $Id: NumberUtilsTest.java,v 1.4 2003/07/21 19:42:12 ggregory Exp $
*/
public class NumberUtilsTest extends TestCase {
@ -154,7 +154,7 @@ public void testCreateFloat() {
Float f = NumberUtils.createFloat("");
fail("createFloat(empty) failed");
} catch (NumberFormatException ex) {
;
// empty
}
}
@ -165,7 +165,7 @@ public void testCreateDouble() {
Double d = NumberUtils.createDouble("");
fail("createDouble(empty) failed");
} catch (NumberFormatException ex) {
;
// empty
}
}
@ -176,7 +176,7 @@ public void testCreateInteger() {
Integer i = NumberUtils.createInteger("");
fail("createInteger(empty) failed");
} catch (NumberFormatException ex) {
;
// empty
}
}
@ -187,7 +187,7 @@ public void testCreateLong() {
Long l = NumberUtils.createLong("");
fail("createLong(empty) failed");
} catch (NumberFormatException ex) {
;
// empty
}
}
@ -198,7 +198,7 @@ public void testCreateBigInteger() {
BigInteger i = NumberUtils.createBigInteger("");
fail("createBigInteger(empty) failed");
} catch (NumberFormatException ex) {
;
// empty
}
}
@ -209,7 +209,7 @@ public void testCreateBigDecimal() {
BigDecimal d = NumberUtils.createBigDecimal("");
fail("createBigDecimal(empty) failed");
} catch (NumberFormatException ex) {
;
// empty
}
}