Changeset 2248


Ignore:
Timestamp:
12/11/17 12:26:32 (7 years ago)
Author:
pharms
Message:
  • solved some findbugs issues
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/HTTPLogParser.java

    r2218 r2248  
    158158        } 
    159159         
     160        FileInputStream in = null; 
    160161        try { 
    161             parseFile(new FileInputStream(file)); 
     162            in = new FileInputStream(file); 
     163            parseFile(in); 
    162164        } 
    163165        catch (FileNotFoundException e) { 
     
    165167            Console.logException(e); 
    166168            return; 
     169        } 
     170        finally { 
     171            if (in != null) { 
     172                try { 
     173                    in.close(); 
     174                } 
     175                catch (IOException e) { 
     176                    Console.logException(e); 
     177                } 
     178            } 
    167179        } 
    168180    } 
Note: See TracChangeset for help on using the changeset viewer.