You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2013/03/24 08:16:43 UTC

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

Author: jacopoc
Date: Sun Mar 24 07:16:43 2013
New Revision: 1460274

URL: http://svn.apache.org/r1460274
Log:
Minor fix to indentation and to a typo in a comment.

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=1460274&r1=1460273&r2=1460274&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 Mar 24 07:16:43 2013
@@ -708,7 +708,7 @@ public class DatabaseUtil {
                         if (messages != null) messages.add(message);
                     }
 
-                    // show Indexe key references that exist but are unknown
+                    // show index key references that exist but are unknown
                     if (tableIndexList != null) {
                         for (String indexLeft: tableIndexList) {
                             String message = "Unknown Index " + indexLeft + " found in table " + entity.getTableName(datasourceInfo);
@@ -948,7 +948,7 @@ public class DatabaseUtil {
         }
         // Db/Driver support settings
         if (Debug.infoOn()) {
-                Debug.logInfo("Database Setting/Support Information (those with a * should be true):", module);
+            Debug.logInfo("Database Setting/Support Information (those with a * should be true):", module);
             for (Detection detection: detections) {
                 String requiredFlag = detection.required ? "*" : "";
                 try {