Changeset 9732


Ignore:
Timestamp:
2005-04-22T13:51:00+12:00 (19 years ago)
Author:
kjdon
Message:

commented out the print statements that used to come if we couldn't find a resource - now we try several times in a row, so these are not very useful

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ant-install-branch/gsdl3/src/java/org/greenstone/gsdl3/util/Dictionary.java

    r9424 r9732  
    4747        this.raw = ResourceBundle.getBundle(this.resource, this.locale);
    4848    } catch (Exception e) {
    49         System.err.println("Dictionary: couldn't locate a resource bundle for "+resource);
     49        //System.err.println("Dictionary: couldn't locate a resource bundle for "+resource);
    5050    }
    5151    }
     
    7070        this.raw = ResourceBundle.getBundle(this.resource, this.locale);
    7171    } catch (Exception ex) {
    72         System.err.println("Dictionary: couldn't locate a resource bundle for "+resource);
     72        //System.err.println("Dictionary: couldn't locate a resource bundle for "+resource);
    7373    }
    7474   
     
    129129    }
    130130    catch (Exception e) {
    131         System.err.println("Dictionary Error: couldn't find string for key:" + key +" in resource "+this.resource);
     131        //System.err.println("Dictionary Error: couldn't find string for key:" + key +" in resource "+this.resource);
    132132        return null;
    133133    }
Note: See TracChangeset for help on using the changeset viewer.