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));
}
/**