Details
-
Bug
-
Resolution: Fixed
-
Minor
-
1.7.19
-
None
Description
InputStream in SimpleLog class at line 156 is not closed properly. For example if simpleLogProps.load(in); throw an exception then the InputStream will remain open.
InputStream in = getResourceAsStream("simplelog.properties"); if (null != in) { try { simpleLogProps.load(in); in.close(); } catch (java.io.IOException e) { // ignored }