VMSecurityManager.java (currentClassLoader): Use 'systemClasssLoader' directly.

* java/lang/VMSecurityManager.java (currentClassLoader): Use
	'systemClasssLoader' directly.

From-SVN: r99185
This commit is contained in:
Tom Tromey 2005-05-03 22:15:01 +00:00 committed by Tom Tromey
parent 7c49fef59c
commit 21fae9376c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-05-03 Tom Tromey <tromey@redhat.com>
* java/lang/VMSecurityManager.java (currentClassLoader): Use
'systemClasssLoader' directly.
2005-05-03 Tom Tromey <tromey@redhat.com>
* java/lang/VMSecurityManager.java (currentClassLoader): Don't

View File

@ -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++)
{