Commit 1e185c02 by Tom Tromey Committed by Tom Tromey

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

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

From-SVN: r38289
parent be768055
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> 2000-12-14 Tom Tromey <tromey@redhat.com>
* java/util/ResourceBundle.java * java/util/ResourceBundle.java
......
...@@ -83,7 +83,9 @@ public abstract class ResourceBundle ...@@ -83,7 +83,9 @@ public abstract class ResourceBundle
{ {
try 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; r = null;
try try
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment