[jboss-cvs] JBossAS SVN: r60715 - branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/naming.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Feb 20 10:59:54 EST 2007
Author: dimitris at jboss.org
Date: 2007-02-20 10:59:54 -0500 (Tue, 20 Feb 2007)
New Revision: 60715
Modified:
branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/naming/SimpleMultiplexer.java
Log:
comment out the evil trace that does Thread.currentThread().getContextClassLoader() and breaks security manager enabled tests.
Modified: branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/naming/SimpleMultiplexer.java
===================================================================
--- branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/naming/SimpleMultiplexer.java 2007-02-20 15:47:08 UTC (rev 60714)
+++ branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/naming/SimpleMultiplexer.java 2007-02-20 15:59:54 UTC (rev 60715)
@@ -49,7 +49,7 @@
{
Context ctxTwo = (Context) ctx.lookup("comp.ejb3");
Context ctxOne = (Context) ctx.lookup("comp.original");
- log.trace("contextClassLoader = " + Thread.currentThread().getContextClassLoader() + " ctxOne = " + ctxOne);
+ //log.trace("contextClassLoader = " + Thread.currentThread().getContextClassLoader() + " ctxOne = " + ctxOne);
if(ctxTwo == null)
return ctxOne;
return new MultiplexerContext(ctxOne, ctxTwo);
More information about the jboss-cvs-commits
mailing list