[jboss-cvs] JBossAS SVN: r61731 - trunk/ejb3/src/main/org/jboss/ejb3.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Mar 27 04:58:25 EDT 2007


Author: wolfc
Date: 2007-03-27 04:58:25 -0400 (Tue, 27 Mar 2007)
New Revision: 61731

Modified:
   trunk/ejb3/src/main/org/jboss/ejb3/Ejb3Registry.java
Log:
Typo fix

Modified: trunk/ejb3/src/main/org/jboss/ejb3/Ejb3Registry.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/Ejb3Registry.java	2007-03-27 08:53:32 UTC (rev 61730)
+++ trunk/ejb3/src/main/org/jboss/ejb3/Ejb3Registry.java	2007-03-27 08:58:25 UTC (rev 61731)
@@ -77,7 +77,7 @@
    {
       String oid = oid(container);
       if(hasContainer(oid))
-         throw new IllegalStateException("Container " + oid + " + is already registered");
+         throw new IllegalStateException("Container " + oid + " is already registered");
       containers.put(oid, container);
    }
 
@@ -91,7 +91,7 @@
    {
       String oid = oid(container);
       if(!hasContainer(oid))
-         throw new IllegalStateException("Container " + oid + " + is not registered");
+         throw new IllegalStateException("Container " + oid + " is not registered");
       containers.remove(oid);
    }
 




More information about the jboss-cvs-commits mailing list