Changeset 8785


Ignore:
Timestamp:
2004-12-13T13:51:12+13:00 (19 years ago)
Author:
mdewsnip
Message:

Another couple of minor improvements.

Location:
trunk/gli/src/org/greenstone/gatherer/file
Files:
2 edited

Legend:

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

    r8783 r8785  
    185185
    186186    public FileNode addChildNode(File file) { return null; }
    187 
    188     public void map() { }
    189187    }
    190188}
  • trunk/gli/src/org/greenstone/gatherer/file/WorkspaceTreeNode.java

    r8784 r8785  
    9696    public void map()
    9797    {
    98     System.err.println("In WorkspaceTreeNode::map() " + this + " file: " + file);
    99 
    10098    // Special Case: if the name of this node is the Tree.World string, then we actually map the collections installed in greenstone. The file in this case will actually be the collect directory of greenstone.
    10199    if (file == null && title.equals(Dictionary.get("Tree.World"))) {
    102         System.err.println("Tree.World case.");
    103 
     100        // If this node has already been mapped, don't bother doing it again
    104101        if (child_nodes != null) {
    105         System.err.println("Already have child_nodes (" + child_nodes.size() + "), returning.");
    106102        return;
    107103        }
Note: See TracChangeset for help on using the changeset viewer.