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:
Dalibor Topic 2004-03-16 09:41:31 +00:00 committed by Michael Koch
parent 4e7edcca30
commit 6828de5bff
2 changed files with 9 additions and 1 deletions

View file

@ -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

View file

@ -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;