ResourceBundle.java (trySomeGetBundle): Pass class loader to Class.forName.

* java/util/ResourceBundle.java (trySomeGetBundle): Pass class
	loader to Class.forName.

From-SVN: r38289
This commit is contained in:
Tom Tromey 2000-12-15 15:49:50 +00:00 committed by Tom Tromey
parent be76805509
commit 1e185c02d4
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-12-15 Tom Tromey <tromey@redhat.com>
* java/util/ResourceBundle.java (trySomeGetBundle): Pass class
loader to Class.forName.
2000-12-14 Tom Tromey <tromey@redhat.com>
* java/util/ResourceBundle.java

View File

@ -83,7 +83,9 @@ public abstract class ResourceBundle
{
try
{
rbc = Class.forName(bundleName);
// This call is wrong by the spec, but it will have to
// do until our Class.forName is fixed.
rbc = Class.forName(bundleName, loader);
r = null;
try
{