wan jian ming created VYSPER-335:
------------------------------------

             Summary: NULL pointer exception.
                 Key: VYSPER-335
                 URL: https://issues.apache.org/jira/browse/VYSPER-335
             Project: VYSPER
          Issue Type: Bug
    Affects Versions: 0.7
            Reporter: wan jian ming


public List<String> getInterestedResources(Entity entity) {
        List<String> resources = getResourceList(entity);
        List<String> result = new ArrayList<String>();
        if(resources!=null)  //this line is needed. otherwise will get NULL 
Pointer EXcpetion.
        for (String resource : resources) {
            ResourceState resourceState = getResourceState(resource);
            if (ResourceState.isInterested(resourceState))
                result.add(resource);
        }
        return result;
    }

this also appears in getAvailableResources;

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to