Ignore:
Timestamp:
2003-06-12T12:07:19+12:00 (21 years ago)
Author:
kjdon
Message:

tidied up gatherer.debug - > gatherer.println

File:
1 edited

Legend:

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

    r4510 r4595  
    343343        }
    344344        in.close();
    345                 // Now attempt to finalize any commands that were not immediately parsed as they were waiting for unresolved references.
     345        // Now attempt to finalize any commands that were not immediately parsed as they were waiting for unresolved references.
    346346        subcollections.reparseUnresolved();
    347347        classifiers.reparseUnresolved();
     
    366366    public void save() {
    367367    try {
    368                 // If the file already exists (it should) rename it.
     368        // If the file already exists (it should) rename it.
    369369        if(in_file.exists()) {
    370370        String filename = in_file.getAbsolutePath();
     
    372372        backup.deleteOnExit();
    373373        if(!in_file.renameTo(backup)) {
    374             gatherer.debug("Error in CollectionDesignManager.parse(): FileRenamedException");
     374            Gatherer.println("Error in CollectionDesignManager.parse(): FileRenamedException");
    375375        }
    376376        in_file = new File(filename); // Just in case we moved it.
Note: See TracChangeset for help on using the changeset viewer.