svn commit: r585878 - /ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r585878 - /ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java

doogie-3
Author: doogie
Date: Wed Oct 17 23:01:03 2007
New Revision: 585878

URL: http://svn.apache.org/viewvc?rev=585878&view=rev
Log:
Append msg to the buffer in getMessage; got lost.

Modified:
    ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java

Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java?rev=585878&r1=585877&r2=585878&view=diff
==============================================================================
--- ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java (original)
+++ ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java Wed Oct 17 23:01:03 2007
@@ -132,7 +132,7 @@
         if (this.messages != null && this.messages.size() > 0) {
             StringBuilder sb = new StringBuilder();
             if (msg != null) {
-                sb.append('\n');
+                sb.append(msg).append('\n');
             }
             Iterator i = this.messages.iterator();
             while (i.hasNext()) {