[jboss-cvs] JBossAS SVN: r65347 - trunk/server/src/main/org/jboss/ejb.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Sep 12 22:02:34 EDT 2007


Author: scott.stark at jboss.org
Date: 2007-09-12 22:02:33 -0400 (Wed, 12 Sep 2007)
New Revision: 65347

Modified:
   trunk/server/src/main/org/jboss/ejb/EjbUtil50.java
Log:
Log if the deployment is an ejb3 type that cannot be dealt with

Modified: trunk/server/src/main/org/jboss/ejb/EjbUtil50.java
===================================================================
--- trunk/server/src/main/org/jboss/ejb/EjbUtil50.java	2007-09-13 02:00:29 UTC (rev 65346)
+++ trunk/server/src/main/org/jboss/ejb/EjbUtil50.java	2007-09-13 02:02:33 UTC (rev 65347)
@@ -255,6 +255,10 @@
             }
          }
       }
+      else if (unit.getAttachment("EJB_DEPLOYMENTS") != null)
+      {
+         log.debug("Saw EJB3 module, cannot resolve it");
+      }
 
       // Search each subcontext
       Iterator<DeploymentUnit> it = unit.getChildren().iterator();




More information about the jboss-cvs-commits mailing list