[slf4j-dev] [JIRA] (SLF4J-377) InputStream is not closed properly

2016-12-13 Thread Ceki Gulcu (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ceki Gulcu resolved as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 SLF4J /  SLF4J-377 
 
 
 
   InputStream is not closed properly  
 
 
 
 
 
 
 
 
 

Change By:
 
 Ceki Gulcu 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   

___
slf4j-dev mailing list
slf4j-dev@qos.ch
http://mailman.qos.ch/mailman/listinfo/slf4j-dev

[slf4j-dev] [JIRA] (SLF4J-377) InputStream is not closed properly

2016-12-13 Thread Jonas (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jonas commented on  SLF4J-377 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: InputStream is not closed properly  
 
 
 
 
 
 
 
 
 
 
Created a pull request 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   

___
slf4j-dev mailing list
slf4j-dev@qos.ch
http://mailman.qos.ch/mailman/listinfo/slf4j-dev

[slf4j-dev] [JIRA] (SLF4J-377) InputStream is not closed properly

2016-10-18 Thread Nitin Verma (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Nitin Verma commented on  SLF4J-377 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: InputStream is not closed properly  
 
 
 
 
 
 
 
 
 
 
yes InputStream should be finally closed. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.12#64027-sha1:e3691cc) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   

___
slf4j-dev mailing list
slf4j-dev@qos.ch
http://mailman.qos.ch/mailman/listinfo/slf4j-dev

[slf4j-dev] [JIRA] (SLF4J-377) InputStream is not closed properly

2016-10-18 Thread Kaloyan Spiridonov (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Kaloyan Spiridonov created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 SLF4J /  SLF4J-377 
 
 
 
   InputStream is not closed properly  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Affects Versions:
 

 1.7.19 
 
 
 

Assignee:
 
 SLF4J developers list 
 
 
 

Components:
 

 jcl-over-slf4j 
 
 
 

Created:
 

 18/Oct/16 7:14 AM 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Kaloyan Spiridonov 
 
 
 
 
 
 
 
 
 
 
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
}