o Updated to stop suppressing exceptions when closing resources fails.

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1784346 13f79535-47bb-0310-9956-ffa450edef68
master
Christian Schulte 2017-02-25 04:14:32 +00:00
parent d484f85160
commit 92f5eaaa3d
1 changed files with 3 additions and 0 deletions

View File

@ -78,6 +78,9 @@ public class PluginMetadataParser
descriptors.add( descriptor );
}
}
reader.close();
reader = null;
}
catch ( IOException e )
{