Added a comment

This commit is contained in:
U-BASIS\dsmyda 2020-01-16 13:32:58 -05:00
parent b0fd086844
commit b8d3ac6016

View File

@ -26,9 +26,7 @@ import java.nio.file.Paths;
import java.util.ArrayDeque; import java.util.ArrayDeque;
import java.util.Deque; import java.util.Deque;
import java.util.HashSet; import java.util.HashSet;
import java.util.LinkedList;
import java.util.List; import java.util.List;
import java.util.Queue;
import java.util.Set; import java.util.Set;
import java.util.logging.Level; import java.util.logging.Level;
import javax.swing.JPanel; import javax.swing.JPanel;
@ -193,8 +191,8 @@ public final class CaseUcoReportModule implements GeneralReportModule {
} }
/** /**
* Perform DFS on the data sources tree. This traversal is more memory * Perform DFS on the data sources tree, which will search it in entirety.
* efficient than BFS (Breadth first search). * This traversal is more memory efficient than BFS (Breadth first search).
*/ */
private void performDepthFirstSearch(Content dataSource, private void performDepthFirstSearch(Content dataSource,
CaseUcoReportGenerator generator) throws IOException, TskCoreException { CaseUcoReportGenerator generator) throws IOException, TskCoreException {