[jboss-cvs] JBossAS SVN: r67518 - branches/JBPAPP_4_2/system/src/main/org/jboss.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 27 17:28:59 EST 2007


Author: dbhole
Date: 2007-11-27 17:28:59 -0500 (Tue, 27 Nov 2007)
New Revision: 67518

Modified:
   branches/JBPAPP_4_2/system/src/main/org/jboss/Version.java
Log:

Add [EAP] in the version reported by the ServerImpl mbean (required for JON)



Modified: branches/JBPAPP_4_2/system/src/main/org/jboss/Version.java
===================================================================
--- branches/JBPAPP_4_2/system/src/main/org/jboss/Version.java	2007-11-27 22:24:31 UTC (rev 67517)
+++ branches/JBPAPP_4_2/system/src/main/org/jboss/Version.java	2007-11-27 22:28:59 UTC (rev 67518)
@@ -233,7 +233,8 @@
       buff.append(getMajor()).append(".");
       buff.append(getMinor()).append(".");
       buff.append(getRevision()).append(".");
-      buff.append(getTag());
+      buff.append(getTag()).append(" [");
+      buff.append(getName()).append("]");
       
       return buff.toString();      
    }




More information about the jboss-cvs-commits mailing list