From 0e08941e690eda9b6573e9c5e012c9f8d9539d70 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Mon, 21 Jul 2003 19:42:12 +0000 Subject: [PATCH] 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 --- .../apache/commons/lang/math/NumberUtilsTest.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/test/org/apache/commons/lang/math/NumberUtilsTest.java b/src/test/org/apache/commons/lang/math/NumberUtilsTest.java index 646340b32..743e61c59 100644 --- a/src/test/org/apache/commons/lang/math/NumberUtilsTest.java +++ b/src/test/org/apache/commons/lang/math/NumberUtilsTest.java @@ -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 } }