8178966: Don't swallow early bootstrap exceptions in Boolean.getBoolean, Integer.getInteger and Long.getLong

Co-authored-by: Peter Levart <plevart@openjdk.org>
Reviewed-by: jpai, rriggs
This commit is contained in:
Eirik Bjørsnøs 2024-11-21 20:04:39 +00:00
parent d6b40d3033
commit e03b1506d3
3 changed files with 3 additions and 16 deletions

View File

@ -275,12 +275,7 @@ public final class Boolean implements java.io.Serializable,
* @see java.lang.System#getProperty(java.lang.String, java.lang.String)
*/
public static boolean getBoolean(String name) {
boolean result = false;
try {
result = parseBoolean(System.getProperty(name));
} catch (IllegalArgumentException | NullPointerException e) {
}
return result;
return name != null && !name.isEmpty() && parseBoolean(System.getProperty(name));
}
/**

View File

@ -1275,11 +1275,7 @@ public final class Integer extends Number
* @see System#getProperty(java.lang.String, java.lang.String)
*/
public static Integer getInteger(String nm, Integer val) {
String v = null;
try {
v = System.getProperty(nm);
} catch (IllegalArgumentException | NullPointerException e) {
}
String v = nm != null && !nm.isEmpty() ? System.getProperty(nm) : null;
if (v != null) {
try {
return Integer.decode(v);

View File

@ -1370,11 +1370,7 @@ public final class Long extends Number
* @see System#getProperty(java.lang.String, java.lang.String)
*/
public static Long getLong(String nm, Long val) {
String v = null;
try {
v = System.getProperty(nm);
} catch (IllegalArgumentException | NullPointerException e) {
}
String v = nm != null && !nm.isEmpty() ? System.getProperty(nm) : null;
if (v != null) {
try {
return Long.decode(v);