Update ParseInteger.java
Fixed error for empty string.
This commit is contained in:
parent
4ac4a62a7f
commit
7179718df2
@ -16,7 +16,7 @@ public class ParseInteger {
|
|||||||
* @throws NumberFormatException if the {@code string} does not contain a parsable integer.
|
* @throws NumberFormatException if the {@code string} does not contain a parsable integer.
|
||||||
*/
|
*/
|
||||||
public static int parseInt(String s) {
|
public static int parseInt(String s) {
|
||||||
if (s == null) {
|
if (s == null || s.length() == 0) {
|
||||||
throw new NumberFormatException("null");
|
throw new NumberFormatException("null");
|
||||||
}
|
}
|
||||||
boolean isNegative = s.charAt(0) == '-';
|
boolean isNegative = s.charAt(0) == '-';
|
||||||
|
Loading…
Reference in New Issue
Block a user