Changeset 12645


Ignore:
Timestamp:
2006-09-01T13:32:56+12:00 (18 years ago)
Author:
mdewsnip
Message:

Minor variable name change.

File:
1 edited

Legend:

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

    r12589 r12645  
    886886
    887887    // Now determine if a lock already exists on this collection.
    888     String name = collection_directory.getName();
     888    String collection_name = collection_directory.getName();
    889889    File lock_file = new File(collection_file.getParentFile(), LOCK_FILE);
    890890    if (lock_file.exists()) {
    891         LockFileDialog dialog = new LockFileDialog(Gatherer.g_man, name, lock_file);
     891        LockFileDialog dialog = new LockFileDialog(Gatherer.g_man, collection_name, lock_file);
    892892        int choice = dialog.getChoice();
    893893        dialog.dispose();
     
    961961
    962962        // We're done. Let everyone know.
    963         DebugStream.println(Dictionary.get("CollectionManager.Loading_Successful", name));
     963        DebugStream.println(Dictionary.get("CollectionManager.Loading_Successful", collection_name));
    964964        Gatherer.refresh(Gatherer.COLLECTION_OPENED);
    965965    }
Note: See TracChangeset for help on using the changeset viewer.