Ignore:
Timestamp:
2004-11-24T15:00:44+13:00 (20 years ago)
Author:
mdewsnip
Message:

Removed more dead code, and moved most of the XML stuff out of Utility and into XMLTools.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/CollectionConfiguration.java

    r8474 r8652  
    329329    if(collect_config_name.equals(COLLECTCONFIGURATION_XML)) {
    330330        // Parse with Utility but don't use class loader
    331         document = Utility.parse(collect_config_file, false);
     331        document = XMLTools.parse(collect_config_file, false);
    332332    }
    333333    // Otherwise if this is a legacy collect.cfg file then read in the template and send to magic parser
     
    470470    if(force_xml || collect_config_file.getName().equals(COLLECTCONFIGURATION_XML)) {
    471471        ///ystem.err.println("Writing XML");
    472         Utility.export(document, new File(collect_config_file.getParentFile(), COLLECTCONFIGURATION_XML));
     472        XMLTools.export(document, new File(collect_config_file.getParentFile(), COLLECTCONFIGURATION_XML));
    473473    }
    474474    else {
Note: See TracChangeset for help on using the changeset viewer.