From defd0f6783268de05c672757af56dafd88ed240b Mon Sep 17 00:00:00 2001 From: "U-BASIS\\dsmyda" Date: Thu, 9 Aug 2018 12:30:27 -0400 Subject: [PATCH] Final changes to comments --- .../databaseselector/DatabaseSelectorIngestModule.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/databaseselector/DatabaseSelectorIngestModule.java b/Core/src/org/sleuthkit/autopsy/modules/databaseselector/DatabaseSelectorIngestModule.java index 0933f7af7b..c73df94730 100755 --- a/Core/src/org/sleuthkit/autopsy/modules/databaseselector/DatabaseSelectorIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/modules/databaseselector/DatabaseSelectorIngestModule.java @@ -97,7 +97,7 @@ public class DatabaseSelectorIngestModule extends FileIngestModuleAdapter { try (SQLiteReader sqliteReader = new SQLiteReader(file, createLocalDiskPath(file))){ Set databaseCellTypes = getCellTypesInDatabase(file, sqliteReader); - //No interesting hits, don't flag this database, skip artifact creation. + //If empty, then no interesting hits, don't flag this database, skip artifact creation. if(!databaseCellTypes.isEmpty()) { try { BlackboardArtifact artifact = createArtifact(file, databaseCellTypes); @@ -240,7 +240,8 @@ public class DatabaseSelectorIngestModule extends FileIngestModuleAdapter { /** * Creates a comma seperated string of all the cell types found in a database - * file. Used as the comment string for the blackboard artifact. + * file. Used as the comment string for the blackboard artifact. TreeSet is + * used to ensure that CellTypes appear in the same order as the enum. * * @param databaseCellTypes The set of all database cell types detected * @return