Use Eclipse comment-style to suppress drop-thru warning

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@819700 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-09-28 20:07:53 +00:00
parent d3391ff4aa
commit 5beb105d6b
1 changed files with 2 additions and 2 deletions

View File

@ -525,7 +525,7 @@ public class NumberUtils {
} catch (NumberFormatException nfe) { } catch (NumberFormatException nfe) {
// ignore the bad number // ignore the bad number
} }
//Fall through //$FALL-THROUGH$
case 'd' : case 'd' :
case 'D' : case 'D' :
try { try {
@ -541,7 +541,7 @@ public class NumberUtils {
} catch (NumberFormatException e) { } catch (NumberFormatException e) {
// ignore the bad number // ignore the bad number
} }
//Fall through //$FALL-THROUGH$
default : default :
throw new NumberFormatException(str + " is not a valid number."); throw new NumberFormatException(str + " is not a valid number.");