Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
Description
Here is related code:
InputStream propFile = EnvironmentInformation.class.getClassLoader().getResourceAsStream(".version.properties"); if (propFile != null) { Properties properties = new Properties(); properties.load(propFile);
propFile should be closed upon leaving the method.