[jboss-cvs] JBossAS SVN: r60797 - branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Feb 22 13:14:51 EST 2007


Author: wolfc
Date: 2007-02-22 13:14:51 -0500 (Thu, 22 Feb 2007)
New Revision: 60797

Modified:
   branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/EJB3Deployer.java
Log:
Textual change

Modified: branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/EJB3Deployer.java
===================================================================
--- branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/EJB3Deployer.java	2007-02-22 16:57:15 UTC (rev 60796)
+++ branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/EJB3Deployer.java	2007-02-22 18:14:51 UTC (rev 60797)
@@ -319,9 +319,9 @@
       initializeJavaComp(iniCtx);
    }
 
-   private static void hackJNDI(Context ctx) throws NamingException
+   private static void multiplexJNDI(Context ctx) throws NamingException
    {
-      log.info("Starting java:comp hack");
+      log.info("Starting java:comp multiplexer");
       // rename to something SimpleMultiPlexer knows.
       // (doesn't work, because rename starts with a lookup and thus resolves
       // to a enc context bound to the current class loader).
@@ -349,7 +349,7 @@
       Context ctx = (Context) iniCtx.lookup("java:");
       ctx.rebind("comp.ejb3", envRef);
       
-      hackJNDI(ctx);
+      multiplexJNDI(ctx);
    }
 
    /**




More information about the jboss-cvs-commits mailing list