Reported by: Adam Heath <doogie@debian.org>
2004-03-16 Dalibor Topic <robilad@kaffe.org> Reported by: Adam Heath <doogie@debian.org> * gnu/javax/rmi/CORBA/DelegateFactory.java (getInstance): Use context class loader. From-SVN: r79528
This commit is contained in:
parent
4e7edcca30
commit
6828de5bff
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-03-16 Dalibor Topic <robilad@kaffe.org>
|
||||
|
||||
Reported by: Adam Heath <doogie@debian.org>
|
||||
* gnu/javax/rmi/CORBA/DelegateFactory.java (getInstance): Use context
|
||||
class loader.
|
||||
|
||||
2004-03-15 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* java/util/Locale.java: Reverting my last patch
|
||||
|
|
|
@ -60,7 +60,9 @@ public class DelegateFactory
|
|||
}
|
||||
try
|
||||
{
|
||||
Class dclass = Class.forName(dcname);
|
||||
Class dclass = Class.forName(dcname,
|
||||
true,
|
||||
Thread.currentThread().getContextClassLoader());
|
||||
r = dclass.newInstance();
|
||||
cache.put(type, r);
|
||||
return r;
|
||||
|
|
Loading…
Add table
Reference in a new issue