Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
Fixed bug I introduced in rev. 1610918: thanks to Deepak Dixit for th…
Browse files Browse the repository at this point in the history
…e bug report and resolution.

git-svn-id: https://svn.apache.org/repos/asf/ofbiz/trunk@1612190 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
jacopoc committed Jul 21, 2014
1 parent 1a7d0d3 commit c4d09d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ protected void populateUsedEntities() throws GeneralException {
}
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
Expand Down

0 comments on commit c4d09d0

Please sign in to comment.