Changeset 27002


Ignore:
Timestamp:
2013-03-05T11:49:10+13:00 (11 years ago)
Author:
jmt12
Message:

Fixing bug in maxdocs processing where I compared to 'file_count' rather than 'total_file_count'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/parallel-building/trunk/src/opt/Terrier/FileIndexer.java

    r26240 r27002  
    586586              // if we have a max files limit and we've done enough files, then
    587587              // break out of for and while loops
    588               if (max_files > 0 && file_count >= max_files)
     588              if (max_files > 0 && total_file_count >= max_files)
    589589              {
    590590                have_max_files = true;
Note: See TracChangeset for help on using the changeset viewer.