[jboss-cvs] JBossAS SVN: r75099 - projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/proxy/factory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jun 26 03:01:43 EDT 2008


Author: jaikiran
Date: 2008-06-26 03:01:43 -0400 (Thu, 26 Jun 2008)
New Revision: 75099

Modified:
   projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/proxy/factory/ProxyFactoryHelper.java
Log:
EJBTHREE-1427 - Typo in logging the reference to EJB3 spec section

Fixed the typo in log message (which pointed to section 4.6.7, Bullet 5.4 of EJB3 spec), to point to the correct section 4.6.6, Bullet 5.4 

Modified: projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/proxy/factory/ProxyFactoryHelper.java
===================================================================
--- projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/proxy/factory/ProxyFactoryHelper.java	2008-06-26 06:57:52 UTC (rev 75098)
+++ projects/ejb3/trunk/core/src/main/java/org/jboss/ejb3/proxy/factory/ProxyFactoryHelper.java	2008-06-26 07:01:43 UTC (rev 75099)
@@ -234,7 +234,7 @@
                if (localInterface.equals(remoteInterface))
                {
                   throw new RuntimeException("@Remote and @Local may not both be specified on the same interface \""
-                        + remoteInterface.toString() + "\" per EJB3 Spec 4.6.7, Bullet 5.4");
+                        + remoteInterface.toString() + "\" per EJB3 Spec 4.6.6, Bullet 5.4");
                }
             }
          }




More information about the jboss-cvs-commits mailing list