1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-02 09:15:56 +00:00

Merge branch 'file-search' of https://github.com/sleuthkit/autopsy into 5372-VideoThumbnailViewer-List

This commit is contained in:
William Schaefer
2019-08-29 11:05:32 -04:00

View File

@@ -201,7 +201,7 @@ class FileSearch {
logger.log(Level.WARNING, "Group only contains {0} files, starting entry of {1} is too large.", new Object[]{filesInGroup.size(), startingEntry});
return page;
}
// Add each page in the range
// Add files to the page
for (int i = startingEntry; (i < startingEntry + numberOfEntries)
&& (i < filesInGroup.size()); i++) {
page.add(filesInGroup.get(i));