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