From e9e3756d4014d202d58e856486d3e84b1ca3d7d4 Mon Sep 17 00:00:00 2001 From: Brian Sweeney Date: Mon, 14 May 2018 09:04:54 -0600 Subject: [PATCH] empty default constructor removed --- .../sleuthkit/autopsy/commonfilesearch/DataSourceLoader.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/commonfilesearch/DataSourceLoader.java b/Core/src/org/sleuthkit/autopsy/commonfilesearch/DataSourceLoader.java index 8e566740e2..5095f7c6c5 100644 --- a/Core/src/org/sleuthkit/autopsy/commonfilesearch/DataSourceLoader.java +++ b/Core/src/org/sleuthkit/autopsy/commonfilesearch/DataSourceLoader.java @@ -42,9 +42,6 @@ public class DataSourceLoader { private static final String SELECT_DATA_SOURCES_IMAGE = "select obj_id, name from tsk_image_names where obj_id in (SELECT obj_id FROM tsk_objects WHERE obj_id in (select obj_id from data_source_info))"; - public DataSourceLoader() { - } - private void loadLogicalSources(SleuthkitCase tskDb, Map dataSouceMap) throws TskCoreException, SQLException { //try block releases resources - exceptions are handled in done() try (SleuthkitCase.CaseDbQuery query = tskDb.executeQuery(SELECT_DATA_SOURCES_LOGICAL)) {