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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Oct 5 05:00:42 EDT 2007


Author: wolfc
Date: 2007-10-05 05:00:42 -0400 (Fri, 05 Oct 2007)
New Revision: 65873

Modified:
   branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/ProxyFactoryHelper.java
Log:
EJBTHREE-785: fixed regression

Modified: branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/ProxyFactoryHelper.java
===================================================================
--- branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/ProxyFactoryHelper.java	2007-10-05 08:37:51 UTC (rev 65872)
+++ branches/Branch_4_2/ejb3/src/main/org/jboss/ejb3/ProxyFactoryHelper.java	2007-10-05 09:00:42 UTC (rev 65873)
@@ -211,7 +211,7 @@
             continue;
          if(intf.equals(java.io.Serializable.class))
             continue;
-         if(intf.getName().startsWith("java.ejb"))
+         if(intf.getName().startsWith("javax.ejb"))
             continue;
          
          // FIXME Other aop frameworks might add other interfaces, this should really be configurable




More information about the jboss-cvs-commits mailing list