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 2014/07/21 07:57:57 UTC

svn commit: r1612191 - in /ofbiz/branches/release13.07: ./ framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java

Author: jacopoc
Date: Mon Jul 21 05:57:56 2014
New Revision: 1612191

URL: http://svn.apache.org/r1612191
Log:
Applied fix from trunk for revision: 1612190 
===

Fixed bug I introduced in rev. 1610918: thanks to Deepak Dixit for the bug report and resolution.


Modified:
    ofbiz/branches/release13.07/   (props changed)
    ofbiz/branches/release13.07/framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java

Propchange: ofbiz/branches/release13.07/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1612190

Modified: ofbiz/branches/release13.07/framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java
URL: http://svn.apache.org/viewvc/ofbiz/branches/release13.07/framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java?rev=1612191&r1=1612190&r2=1612191&view=diff
==============================================================================
--- ofbiz/branches/release13.07/framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java (original)
+++ ofbiz/branches/release13.07/framework/webtools/src/org/ofbiz/webtools/artifactinfo/ServiceArtifactInfo.java Mon Jul 21 05:57:56 2014
@@ -122,7 +122,7 @@ public class ServiceArtifactInfo extends
     }
     protected void populateEntitiesFromNameSet(Set<String> allEntityNameSet) throws GeneralException {
         for (String entityName: allEntityNameSet) {
-            if (UtilValidate.isEmail(entityName) || entityName.contains("${")) {
+            if (UtilValidate.isEmpty(entityName) || entityName.contains("${")) {
                 continue;
             }
             // attempt to convert relation names to entity names