* java/util/ResourceBundle.java (trySomeGetBundle): Pass class
loader to Class.forName.
From-SVN: r38289
+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
{
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
{