ensure that it gets closed, even if close throws exception

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1071608 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2011-02-17 13:31:17 +00:00
parent 1460694de3
commit f2b0885b53
1 changed files with 2 additions and 2 deletions

View File

@ -235,8 +235,8 @@ public class Maven2RepositoryMerger
}
finally
{
out.close();
input.close();
IOUtils.closeQuietly( out );
IOUtils.closeQuietly( input );
}
}