Final changes to comments

This commit is contained in:
U-BASIS\dsmyda 2018-08-09 12:30:27 -04:00
parent 9afa1fa38c
commit defd0f6783

View File

@ -97,7 +97,7 @@ public class DatabaseSelectorIngestModule extends FileIngestModuleAdapter {
try (SQLiteReader sqliteReader = new SQLiteReader(file, createLocalDiskPath(file))){ try (SQLiteReader sqliteReader = new SQLiteReader(file, createLocalDiskPath(file))){
Set<CellType> databaseCellTypes = getCellTypesInDatabase(file, sqliteReader); Set<CellType> 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()) { if(!databaseCellTypes.isEmpty()) {
try { try {
BlackboardArtifact artifact = createArtifact(file, databaseCellTypes); 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 * 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 * @param databaseCellTypes The set of all database cell types detected
* @return * @return