You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2010/12/01 20:12:52 UTC

svn commit: r1041135 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java

Author: jleroux
Date: Wed Dec  1 19:12:52 2010
New Revision: 1041135

URL: http://svn.apache.org/viewvc?rev=1041135&view=rev
Log:
Fix a typo (bad formatting) reported by Adam on dev ML

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java?rev=1041135&r1=1041134&r2=1041135&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java Wed Dec  1 19:12:52 2010
@@ -368,7 +368,7 @@ public class ModelEntity extends ModelIn
 
     /** The table-name of the Entity including a Schema name if specified in the datasource config */
     public String getTableName(DatasourceInfo datasourceInfo) {
-        if (datasourceInfo!=null && UtilValidate.isNotEmpty(datasourceInfo.schemaName)) {
+        if (datasourceInfo != null && UtilValidate.isNotEmpty(datasourceInfo.schemaName)) {
             return datasourceInfo.schemaName + "." + this.tableName;
         } else {
             return this.tableName;