Ignore:
Timestamp:
2004-10-08T09:46:12+13:00 (20 years ago)
Author:
mdewsnip
Message:

Replaced all Gatherer.print* with DebugStream.print*.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/file/FileNode.java

    r8231 r8236  
    88import javax.swing.tree.*;
    99import org.greenstone.gatherer.Configuration;
     10import org.greenstone.gatherer.DebugStream;
    1011import org.greenstone.gatherer.Dictionary;
    1112import org.greenstone.gatherer.Gatherer;
     
    215216    /** Adds child to the receiver at index. */
    216217    public void insert(MutableTreeNode child, int index) {
    217     Gatherer.println("Insert " + child + " in " + this + " at index " + index + " [Model: " + model + "]");
     218    DebugStream.println("Insert " + child + " in " + this + " at index " + index + " [Model: " + model + "]");
    218219    if (child == null) {
    219220        return;
     
    339340        if(files != null && files.length > 0) {
    340341            // Sort the remaining files.
    341             Gatherer.println("Number of files to sort: " + files.length);
     342            DebugStream.println("Number of files to sort: " + files.length);
    342343            ArrayTools.sort(files);
    343             Gatherer.println("Files sorted.");
     344            DebugStream.println("Files sorted.");
    344345            // Now add them to children.
    345346            raw_children = new ArrayList();
Note: See TracChangeset for help on using the changeset viewer.