Changeset 12804


Ignore:
Timestamp:
2006-09-21T14:22:03+12:00 (18 years ago)
Author:
mdewsnip
Message:

Removed an unused function.

Location:
trunk/gli/src/org/greenstone/gatherer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/collection/CollectionManager.java

    r12746 r12804  
    12591259
    12601260    // Write out the collection configuration file
    1261     //Gatherer.g_man.design_pane.saveConfiguration();
    12621261    collection.cdm.save();
     1262
    12631263    // Change cursor back to normal
    12641264    Gatherer.g_man.wait(false);
  • trunk/gli/src/org/greenstone/gatherer/gui/BaseConfigPane.java

    r12143 r12804  
    114114    public void loseFocus() {
    115115    if (cdm != null) {
    116         cdm.save(false);
     116        cdm.save();
    117117    }
    118118    if (view != null) {
     
    145145        cdm = Gatherer.c_man.getCollection().cdm;
    146146        tree.resetModel(Configuration.getMode()); // does this set view??
    147     }
    148     }
    149 
    150     public void saveConfiguration() {
    151     if (cdm != null) {
    152         cdm.save(true);
    153147    }
    154148    }
Note: See TracChangeset for help on using the changeset viewer.