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:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user