Remove current case before getting datasources for common files case.

# Conflicts:
#	Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java
This commit is contained in:
Andrew Ziehl 2018-05-29 09:39:21 -07:00 committed by Brian Sweeney
parent e82126e721
commit 12a443e379

View File

@ -359,6 +359,7 @@ public final class CommonFilesPanel extends javax.swing.JPanel {
protected Map<Integer, String> doInBackground() throws Exception {
List<CorrelationCase> dataSources = EamDb.getInstance().getCases();
dataSources.remove(EamDb.getInstance().getCase(Case.getCurrentCase()));
Map<Integer, String> caseMap = mapDataSources(dataSources);
return caseMap;