[jboss-cvs] JBossAS SVN: r111519 - projects/jboss-jca/trunk/common/src/main/java/org/jboss/jca/common.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jun 3 13:39:18 EDT 2011


Author: jesper.pedersen
Date: 2011-06-03 13:39:18 -0400 (Fri, 03 Jun 2011)
New Revision: 111519

Modified:
   projects/jboss-jca/trunk/common/src/main/java/org/jboss/jca/common/CommonLogger.java
Log:
[JBJCA-592] Remove extra 0

Modified: projects/jboss-jca/trunk/common/src/main/java/org/jboss/jca/common/CommonLogger.java
===================================================================
--- projects/jboss-jca/trunk/common/src/main/java/org/jboss/jca/common/CommonLogger.java	2011-06-03 17:15:56 UTC (rev 111518)
+++ projects/jboss-jca/trunk/common/src/main/java/org/jboss/jca/common/CommonLogger.java	2011-06-03 17:39:18 UTC (rev 111519)
@@ -44,7 +44,7 @@
     * @param t The exception
     */
    @LogMessage(level = ERROR)
-   @Message(id = 05001, value = "Parsing error of ra.xml file: %s")
+   @Message(id = 5001, value = "Parsing error of ra.xml file: %s")
    public void parsingErrorRaXml(String url, @Cause Throwable t);
 
    /**
@@ -53,21 +53,21 @@
     * @param t The exception
     */
    @LogMessage(level = ERROR)
-   @Message(id = 05002, value = "Parsing error of ironjacamar.xml file: %s")
+   @Message(id = 5002, value = "Parsing error of ironjacamar.xml file: %s")
    public void parsingErrorIronJacamarXml(String url, @Cause Throwable t);
 
    /**
     * No connector
     */
    @LogMessage(level = ERROR)
-   @Message(id = 05003, value = "No @Connector was found and no definition in the ra.xml metadata either")
+   @Message(id = 5003, value = "No @Connector was found and no definition in the ra.xml metadata either")
    public void noConnector();
 
    /**
     * More than one connector
     */
    @LogMessage(level = ERROR)
-   @Message(id = 05004, value = "More than one @Connector was found but the correct one " +
+   @Message(id = 5004, value = "More than one @Connector was found but the correct one " +
             "wasn't defined in the ra.xml metadata")
    public void moreThanOneConnector();
 }



More information about the jboss-cvs-commits mailing list