[jboss-cvs] JBossAS SVN: r64053 - projects/microcontainer/trunk/deployers-core/src/main/org/jboss/deployers/plugins/structure.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jul 13 18:10:33 EDT 2007


Author: adrian at jboss.org
Date: 2007-07-13 18:10:33 -0400 (Fri, 13 Jul 2007)
New Revision: 64053

Modified:
   projects/microcontainer/trunk/deployers-core/src/main/org/jboss/deployers/plugins/structure/StructureMetaDataImpl.java
Log:
Fix a typo in the irror massage. :-)

Modified: projects/microcontainer/trunk/deployers-core/src/main/org/jboss/deployers/plugins/structure/StructureMetaDataImpl.java
===================================================================
--- projects/microcontainer/trunk/deployers-core/src/main/org/jboss/deployers/plugins/structure/StructureMetaDataImpl.java	2007-07-13 21:45:24 UTC (rev 64052)
+++ projects/microcontainer/trunk/deployers-core/src/main/org/jboss/deployers/plugins/structure/StructureMetaDataImpl.java	2007-07-13 22:10:33 UTC (rev 64053)
@@ -56,7 +56,7 @@
       for (ContextInfo other : contexts)
       {
          if (path.equals(other.getPath()))
-            throw new IllegalStateException("Context alread exists with path '" + path + "' contexts=" + getContexts());
+            throw new IllegalStateException("Context already exists with path '" + path + "' contexts=" + getContexts());
       }
       contexts.add(context);
    }




More information about the jboss-cvs-commits mailing list