Changeset 31629


Ignore:
Timestamp:
2017-04-21T17:49:06+12:00 (7 years ago)
Author:
ak19
Message:

Adding a printStackTrace() to what was an empty catch statement.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gli/src/org/greenstone/gatherer/download/ServerInfoDialog.java

    r20924 r31629  
    132132        BufferedReader br = new BufferedReader(isr);
    133133        String line;
    134         // Capture the standard error stream and seach for two particular occurances.
     134        // Capture the standard error stream and seach for two particular occurences.
    135135        while ((line = br.readLine()) != null && !line.trim().equals("<<Finished>>")) {
    136136         
     
    141141       
    142142    } catch (Exception ioe) {
    143      
     143        ioe.printStackTrace();
    144144    }
    145145   
Note: See TracChangeset for help on using the changeset viewer.