[ 
https://issues.apache.org/jira/browse/VFS-610?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lae updated VFS-610:
--------------------
    Description: 
{{org.apache.commons.vfs2.util.CombinedResources.loadResources(String)}} 
doesn't close the streams it creates:
{code:java}
    protected void loadResources(String resourceName)
    {
                    ...
                    properties.load(resource.openConnection().getInputStream());
                    ...
    }
{code}

  was:
{{org.apache.commons.vfs2.util.CombinedResources.loadResources(String)}} 
doesn't close the {{InputStream}}s it created:
{code:java}
    protected void loadResources(String resourceName)
    {
                    ...
                    properties.load(resource.openConnection().getInputStream());
                    ...
    }
{code}


> Resource leak in CombinedResources.loadResources(String)
> --------------------------------------------------------
>
>                 Key: VFS-610
>                 URL: https://issues.apache.org/jira/browse/VFS-610
>             Project: Commons VFS
>          Issue Type: Bug
>    Affects Versions: 2.0
>            Reporter: Lae
>
> {{org.apache.commons.vfs2.util.CombinedResources.loadResources(String)}} 
> doesn't close the streams it creates:
> {code:java}
>     protected void loadResources(String resourceName)
>     {
>                     ...
>                     
> properties.load(resource.openConnection().getInputStream());
>                     ...
>     }
> {code}



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

Reply via email to