Catch NumberFormatException when parsing integer

Este commit está contenido en:
Paul Schaub 2019-09-28 01:32:11 +02:00
padre c3cc7461f1
commit 6b84517ce8
Firmado por: vanitasvitae
ID de clave GPG: 62BEE9264BF17311
Se han modificado 1 ficheros con 8 adiciones y 1 borrados

Ver fichero

@ -27,6 +27,7 @@ import java.util.List;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.net.ssl.SSLContext;
@ -545,6 +546,12 @@ public final class Configuration {
private static int getIntProperty(Properties properties, String propertyName, int defaultValue) {
String s = properties.getProperty(propertyName, Integer.toString(defaultValue));
return Integer.parseInt(s);
try {
return Integer.parseInt(s);
} catch (NumberFormatException e) {
LOGGER.log(Level.WARNING, "Could not parse value of property " + propertyName +
". Using default value " + defaultValue + " instead.");
return defaultValue;
}
}
}