We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3603ba commit 7590ff6Copy full SHA for 7590ff6
launcher/src/main/java/org/springframework/boot/loader/thin/ThinJarLauncher.java
@@ -18,7 +18,6 @@
18
19
import java.io.File;
20
import java.net.URL;
21
-import java.security.AccessControlException;
22
import java.util.ArrayList;
23
import java.util.HashMap;
24
import java.util.Iterator;
@@ -454,7 +453,7 @@ private Properties getSystemProperties() {
454
453
properties.setProperty(name, system.getProperty(key.toString()));
455
}
456
457
- } catch (AccessControlException e) {
+ } catch (SecurityException e) {
458
// ignore
459
460
if (environment.getPropertySources().contains("commandArgs")) {
0 commit comments