From e7399bbb5b79637cb10cecc4f254bd4ca5536707 Mon Sep 17 00:00:00 2001
From: Greg DiCristofaro <gregd@basistech.com>
Date: Mon, 9 May 2022 13:09:00 -0400
Subject: [PATCH] check box lists

---
 Core/nbproject/project.xml                                  | 1 +
 .../autopsy/modules/hashdatabase/HashDbManager.java         | 6 +++---
 .../core.jar/org/netbeans/core/startup/Bundle.properties    | 2 +-
 .../org/netbeans/core/windows/view/ui/Bundle.properties     | 2 +-
 4 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/Core/nbproject/project.xml b/Core/nbproject/project.xml
index b87be37d47..a2c26e5f6e 100644
--- a/Core/nbproject/project.xml
+++ b/Core/nbproject/project.xml
@@ -338,6 +338,7 @@
                 <package>org.sleuthkit.autopsy.modules.encryptiondetection</package>
                 <package>org.sleuthkit.autopsy.modules.filetypeid</package>
                 <package>org.sleuthkit.autopsy.modules.hashdatabase</package>
+                <package>org.sleuthkit.autopsy.modules.interestingitems</package>
                 <package>org.sleuthkit.autopsy.modules.vmextractor</package>
                 <package>org.sleuthkit.autopsy.progress</package>
                 <package>org.sleuthkit.autopsy.report</package>
diff --git a/Core/src/org/sleuthkit/autopsy/modules/hashdatabase/HashDbManager.java b/Core/src/org/sleuthkit/autopsy/modules/hashdatabase/HashDbManager.java
index cf099075ed..cb96c4793c 100644
--- a/Core/src/org/sleuthkit/autopsy/modules/hashdatabase/HashDbManager.java
+++ b/Core/src/org/sleuthkit/autopsy/modules/hashdatabase/HashDbManager.java
@@ -1050,7 +1050,7 @@ public enum Event {
          *
          * @throws TskCoreException
          */
-        abstract boolean isValid() throws TskCoreException;
+        public abstract boolean isValid() throws TskCoreException;
 
         public abstract String getIndexPath() throws TskCoreException;
 
@@ -1301,7 +1301,7 @@ public HashHitInfo lookupMD5(Content content) throws TskCoreException {
          * @throws TskCoreException
          */
         @Override
-        boolean isValid() throws TskCoreException {
+        public boolean isValid() throws TskCoreException {
             return hasIndex();
         }
 
@@ -1646,7 +1646,7 @@ public HashHitInfo lookupMD5(Content content) throws TskCoreException {
          * @return true if is valid, false otherwise
          */
         @Override
-        boolean isValid() {
+        public boolean isValid() {
             if (!CentralRepository.isEnabled()) {
                 return false;
             }
diff --git a/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties b/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties
index 70757be098..0c25d1f553 100644
--- a/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties
+++ b/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties
@@ -1,5 +1,5 @@
 #Updated by build script
-#Tue, 29 Mar 2022 14:28:23 -0400
+#Mon, 09 May 2022 12:29:49 -0400
 LBL_splash_window_title=Starting Autopsy
 SPLASH_HEIGHT=314
 SPLASH_WIDTH=538
diff --git a/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties b/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties
index 0cce0c0e1a..d6915be1cb 100644
--- a/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties
+++ b/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties
@@ -1,4 +1,4 @@
 #Updated by build script
-#Tue, 29 Mar 2022 14:28:23 -0400
+#Mon, 09 May 2022 12:29:49 -0400
 CTL_MainWindow_Title=Autopsy 4.19.3
 CTL_MainWindow_Title_No_Project=Autopsy 4.19.3
-- 
GitLab