Commit 6828de5b by Dalibor Topic Committed by Michael Koch

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
parent 4e7edcca
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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment