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:
parent
be76805509
commit
1e185c02d4
2 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue