From ff532b1275655abb496a15f7722e24c2daaf2684 Mon Sep 17 00:00:00 2001 From: Brian Sweeney Date: Thu, 15 Mar 2018 09:30:12 -0600 Subject: [PATCH] comment cleanup --- .../sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java index 4c900f2bd4..6abb95e099 100644 --- a/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java +++ b/Core/src/org/sleuthkit/autopsy/commonfilesearch/CommonFilesPanel.java @@ -88,9 +88,6 @@ public final class CommonFilesPanel extends javax.swing.JPanel { Case currentCase = Case.getOpenCase(); SleuthkitCase tskDb = currentCase.getSleuthkitCase(); - //TODO this is sort of a misues of the findAllFilesWhere function and seems brittle... - //...consider doing something else - //TODO verify that this works with postgres return tskDb.findAllFilesWhere("md5 in (select md5 from tsk_files where (known != 1 OR known IS NULL) GROUP BY md5 HAVING COUNT(*) > 1) order by md5"); }