You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Wei Zhang (JIRA)" <ji...@apache.org> on 2015/09/11 08:53:46 UTC

[jira] [Created] (OFBIZ-6615) The EntityListIterator does not be closed in EntityQuery.query()

Wei Zhang created OFBIZ-6615:
--------------------------------

             Summary: The EntityListIterator does not be closed in EntityQuery.query()
                 Key: OFBIZ-6615
                 URL: https://issues.apache.org/jira/browse/OFBIZ-6615
             Project: OFBiz
          Issue Type: Bug
    Affects Versions: Trunk
            Reporter: Wei Zhang


The EntityListIterator at line 453 should be closed and the code should be looks like below

{code:|borderStyle=solid}
private List<GenericValue> query(EntityFindOptions efo) throws GenericEntityException {
        EntityFindOptions findOptions = null;
        if (efo == null) {
            findOptions = makeEntityFindOptions();
        } else {
            findOptions = efo;
        }
        List<GenericValue> result = null;
        if (dynamicViewEntity == null) {
            result = delegator.findList(entityName, makeWhereCondition(useCache), fieldsToSelect, orderBy, findOptions, useCache);
        } else {
            EntityListIterator it = queryIterator();
            result = it.getCompleteList();
            it.close();
        }
        if (filterByDate && useCache) {
            return EntityUtil.filterByCondition(result, this.makeDateCondition());
        }
        return result;
    }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)