Ignore:
Timestamp:
2004-10-07T16:44:32+13:00 (20 years ago)
Author:
mdewsnip
Message:

Replaced all "Gatherer.config" with "Configuration".

File:
1 edited

Legend:

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

    r8043 r8231  
    4040import java.util.*;
    4141import javax.swing.*;
     42import org.greenstone.gatherer.Configuration;
    4243import org.greenstone.gatherer.Gatherer;
    4344import org.greenstone.gatherer.collection.Collection;
     
    164165        File copied_dir;
    165166        if (Gatherer.GS3) {
    166         copied_dir = new File(Utility.getCollectionDir(Gatherer.config.gsdl3_path, Gatherer.config.site_name, name));
     167        copied_dir = new File(Utility.getCollectionDir(Configuration.gsdl3_path, Configuration.site_name, name));
    167168        } else {
    168         copied_dir = new File(Utility.getCollectionDir(Gatherer.config.gsdl_path, name));
     169        copied_dir = new File(Utility.getCollectionDir(Configuration.gsdl_path, name));
    169170        }
    170171        files.add(collection_file.getParentFile());
Note: See TracChangeset for help on using the changeset viewer.