Changeset 14568 for gli


Ignore:
Timestamp:
2007-09-25T10:29:17+12:00 (17 years ago)
Author:
qq6
Message:

deleted some comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gli/trunk/src/org/greenstone/gatherer/gui/WarningDialog.java

    r14567 r14568  
    154154        if(affected_property != null && Configuration.self != null) {
    155155        String value = value_field.getText();
    156         System.out.println("-------- warningdialog value: "+value);
    157156        if(value.length() > 0) {
    158157           if(value_field instanceof URLField) {
    159158              bad_value = !((URLField)value_field).validateURL();
    160               System.out.println("-------- warningdialog bad_value: "+bad_value);
    161159           }
    162160           if(!bad_value) {
    163161              // Store the value of the property
    164162              Configuration.setString(affected_property, true, value_field.getText());
    165               System.out.println("-------- warningdialog affected_property: "+affected_property);
    166               System.out.println("-------- warningdialog value_field.getText(): "+value_field.getText());
    167               System.out.println("-------- warningdialog Configuration.getString(general.gliserver_url, true): "+Configuration.getString("general.gliserver_url", true));     
    168163           }
    169164        }
     
    171166        if(!bad_value) {
    172167        result = JOptionPane.OK_OPTION;
    173         System.out.println("-------- warningdialog result: "+result);
    174168        }
    175169    }
Note: See TracChangeset for help on using the changeset viewer.