VMSecurityManager.java (currentClassLoader): Use 'systemClasssLoader' directly.
* java/lang/VMSecurityManager.java (currentClassLoader): Use 'systemClasssLoader' directly. From-SVN: r99185
This commit is contained in:
parent
7c49fef59c
commit
21fae9376c
2 changed files with 6 additions and 1 deletions
|
@ -54,7 +54,7 @@ class VMSecurityManager
|
|||
// The docs above are wrong. See the online docs.
|
||||
// FIXME this implementation is a bit wrong too -- the docs say we
|
||||
// must also consider ancestors of the system class loader.
|
||||
ClassLoader systemClassLoader = ClassLoader.getSystemClassLoader();
|
||||
ClassLoader systemClassLoader = ClassLoader.systemClassLoader;
|
||||
Class[] classStack = getClassContext (caller);
|
||||
for (int i = 0; i < classStack.length; i++)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue