Changeset 4501


Ignore:
Timestamp:
2003-06-06T15:40:06+12:00 (21 years ago)
Author:
kjdon
Message:

indented some comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/mem/MEMModel.java

    r4365 r4501  
    7474        return;
    7575        }
    76                 // This may be the profiler root node, in which case we descend into its children if we're looking for collection file matches.
     76        // This may be the profiler root node, in which case we descend into its children if we're looking for collection file matches.
    7777        else if(type == MEMNode.COLLECTION && child.getType() == MEMNode.PROFILER) {
    7878        for(int j = 0; j < child.getChildCount(); j++) {
     
    8585        }
    8686        }
    87                 // If this is a set and we are looking for an element, then iterate through its children. Can't really do this recursively.
     87        // If this is a set and we are looking for an element, then iterate through its children. Can't really do this recursively.
    8888        else if(type == MEMNode.ELEMENT && child.getType() == MEMNode.SET) {
    8989        for(int j = 0; j < child.getChildCount(); j++) {
Note: See TracChangeset for help on using the changeset viewer.