mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8202419: Avoid creating Permission constants early
Reviewed-by: alanb, mullan
This commit is contained in:
parent
f7afa8ff53
commit
0f478d2cfd
4 changed files with 26 additions and 21 deletions
|
@ -425,7 +425,8 @@ class Thread implements Runnable {
|
|||
*/
|
||||
if (security != null) {
|
||||
if (isCCLOverridden(getClass())) {
|
||||
security.checkPermission(SUBCLASS_IMPLEMENTATION_PERMISSION);
|
||||
security.checkPermission(
|
||||
SecurityConstants.SUBCLASS_IMPLEMENTATION_PERMISSION);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1703,10 +1704,6 @@ class Thread implements Runnable {
|
|||
return m;
|
||||
}
|
||||
|
||||
|
||||
private static final RuntimePermission SUBCLASS_IMPLEMENTATION_PERMISSION =
|
||||
new RuntimePermission("enableContextClassLoaderOverride");
|
||||
|
||||
/** cache of subclass security audit results */
|
||||
/* Replace with ConcurrentReferenceHashMap when/if it appears in a future
|
||||
* release */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue