From bb9441faf5a289bca689d0f431dd90320a2f1b51 Mon Sep 17 00:00:00 2001 From: Brian Sweeney Date: Mon, 23 Apr 2018 14:33:07 -0600 Subject: [PATCH] rename --- ...taSources.java => AllDataSourcesCommonFilesAlgorithm.java} | 4 ++-- .../sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename Core/src/org/sleuthkit/autopsy/commonfilesearch/{AllDataSources.java => AllDataSourcesCommonFilesAlgorithm.java} (89%) diff --git a/Core/src/org/sleuthkit/autopsy/commonfilesearch/AllDataSources.java b/Core/src/org/sleuthkit/autopsy/commonfilesearch/AllDataSourcesCommonFilesAlgorithm.java similarity index 89% rename from Core/src/org/sleuthkit/autopsy/commonfilesearch/AllDataSources.java rename to Core/src/org/sleuthkit/autopsy/commonfilesearch/AllDataSourcesCommonFilesAlgorithm.java index 105b82687d..9075e03b30 100644 --- a/Core/src/org/sleuthkit/autopsy/commonfilesearch/AllDataSources.java +++ b/Core/src/org/sleuthkit/autopsy/commonfilesearch/AllDataSourcesCommonFilesAlgorithm.java @@ -24,7 +24,7 @@ import java.util.Map; /** * Provides logic for selecting common files from all data sources. */ -final class AllDataSources extends CommonFilesMetaDataBuilder { +final class AllDataSourcesCommonFilesAlgorithm extends CommonFilesMetaDataBuilder { private static final String WHERE_CLAUSE = "%s md5 in (select md5 from tsk_files where (known != 1 OR known IS NULL)%s GROUP BY md5 HAVING COUNT(*) > 1) order by md5"; @@ -34,7 +34,7 @@ final class AllDataSources extends CommonFilesMetaDataBuilder { * * @param dataSourceIdMap a map of obj_id to datasource name */ - AllDataSources(Map dataSourceIdMap, boolean filterByMediaMimeType, boolean filterByDocMimeType) { + AllDataSourcesCommonFilesAlgorithm(Map dataSourceIdMap, boolean filterByMediaMimeType, boolean filterByDocMimeType) { super(dataSourceIdMap, filterByMediaMimeType, filterByDocMimeType); } diff --git a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java index daa931e3ff..059c00aed6 100644 --- a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java +++ b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java @@ -255,7 +255,7 @@ public final class CommonFilesPanel extends javax.swing.JPanel { } } if (dataSourceId == CommonFilesPanel.NO_DATA_SOURCE_SELECTED) { - builder = new AllDataSources(CommonFilesPanel.this.dataSourceMap, filterByMedia, filterByDocuments); + builder = new AllDataSourcesCommonFilesAlgorithm(CommonFilesPanel.this.dataSourceMap, filterByMedia, filterByDocuments); setTitleForAllDataSources(); } else {