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:
parent
d3391ff4aa
commit
5beb105d6b
|
@ -525,7 +525,7 @@ public class NumberUtils {
|
|||
} catch (NumberFormatException nfe) {
|
||||
// ignore the bad number
|
||||
}
|
||||
//Fall through
|
||||
//$FALL-THROUGH$
|
||||
case 'd' :
|
||||
case 'D' :
|
||||
try {
|
||||
|
@ -541,7 +541,7 @@ public class NumberUtils {
|
|||
} catch (NumberFormatException e) {
|
||||
// ignore the bad number
|
||||
}
|
||||
//Fall through
|
||||
//$FALL-THROUGH$
|
||||
default :
|
||||
throw new NumberFormatException(str + " is not a valid number.");
|
||||
|
||||
|
|
Loading…
Reference in New Issue