Ignore:
Timestamp:
2004-03-26T15:36:14+12:00 (20 years ago)
Author:
mdewsnip
Message:

Removed some debug statements accidently committed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/util/ArrayTools.java

    r7121 r7122  
    441441        }
    442442    }
    443     System.err.println("Number of files: " + files_list.size());
    444     System.err.println("Number of non-files: " + non_files_list.size());
    445 
     443
     444    // Sort files
    446445    Object[] files = files_list.toArray();
     446    Arrays.sort(files, comparator);
     447
     448    // Sort non-files
    447449    Object[] non_files = non_files_list.toArray();
    448 
    449     // Sort files
    450     Arrays.sort(files, comparator);
    451 
    452     // Sort non-files
    453450    Arrays.sort(non_files, comparator);
    454451
Note: See TracChangeset for help on using the changeset viewer.