Changeset 4446


Ignore:
Timestamp:
2003-06-03T12:11:02+12:00 (21 years ago)
Author:
jmt12
Message:

Made such LockFileDialog was being dismissed properly. It wasn't but thats not what caused 2030100.

File:
1 edited

Legend:

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

    r4439 r4446  
    719719    if(location.endsWith(".col")) {
    720720        File collection_file = new File(location);
    721                 // Ensure that the directory exists.
     721        // Ensure that the directory exists.
    722722        File collection_directory = collection_file.getParentFile();
    723723        if(collection_directory.exists()) {
     
    729729            LockFileDialog dialog = new LockFileDialog(Gatherer.g_man, name, lock_file);
    730730            choice = dialog.getChoice();
     731            dialog.dispose();
     732            dialog = null;
    731733        }
    732734        if(choice == LockFileDialog.YES_OPTION) {
Note: See TracChangeset for help on using the changeset viewer.