Community
Participate
Working Groups
Build Identifier: 3.6.1 Help system is leaking file handles (opening file input streams and not explicitly closing them). We need to validate that file handles are being left open and provide a fix. Reproducible: Sometimes
I have used the FindBugs a code analysis tool (free under GNU License), which really helped me to get the kind of code analysis I was looking. To integrate FindBugs with Eclipse use the following link : http://findbugs.sourceforge.net/manual/eclipse.html. Very nice feature is that it provides the flexibility to select the individual bugs test e.g. OBL(description: Method may fail to clean up stream or resource) & OS (Description: Method may fail to close stream). To get more detailed description of the available bugs analysis using FindBugs refer : http://findbugs.sourceforge.net/bugDescriptions.html
Created attachment 187261 [details] Fix for unclosed handle I after running through FindBugs tool, I found one unclosed handle and I fixed it. Please find the fix in the patch.
I reviewed your patch and it looks good. I will commit it next week.
Patch committed to HEAD, Fixed