You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2010/05/31 00:08:30 UTC

svn commit: r949623 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java

Author: doogie
Date: Sun May 30 22:08:29 2010
New Revision: 949623

URL: http://svn.apache.org/viewvc?rev=949623&view=rev
Log:
Fix wrong index label on declared indices.

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java?rev=949623&r1=949622&r2=949623&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java Sun May 30 22:08:29 2010
@@ -665,7 +665,7 @@ public class DatabaseUtil {
                             }
                         }
                         if (createdIndexes) {
-                            String message = "Created foreign key index/indices for entity [" + entity.getEntityName() + "]";
+                            String message = "Created declared index/indices for entity [" + entity.getEntityName() + "]";
                             Debug.logImportant(message, module);
                             if (messages != null) messages.add(message);
                         }