Author: sebb Date: Mon Sep 28 20:07:53 2009 New Revision: 819700 URL: http://svn.apache.org/viewvc?rev=819700&view=rev Log: Use Eclipse comment-style to suppress drop-thru warning
Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/math/NumberUtils.java Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/math/NumberUtils.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang/math/NumberUtils.java?rev=819700&r1=819699&r2=819700&view=diff ============================================================================== --- commons/proper/lang/trunk/src/java/org/apache/commons/lang/math/NumberUtils.java (original) +++ commons/proper/lang/trunk/src/java/org/apache/commons/lang/math/NumberUtils.java Mon Sep 28 20:07:53 2009 @@ -525,7 +525,7 @@ } catch (NumberFormatException nfe) { // ignore the bad number } - //Fall through + //$FALL-THROUGH$ case 'd' : case 'D' : try { @@ -541,7 +541,7 @@ } catch (NumberFormatException e) { // ignore the bad number } - //Fall through + //$FALL-THROUGH$ default : throw new NumberFormatException(str + " is not a valid number.");