diff --git a/Core/nbproject/project.xml b/Core/nbproject/project.xml
index be742fc4ac..b5caa9e980 100644
--- a/Core/nbproject/project.xml
+++ b/Core/nbproject/project.xml
@@ -338,9 +338,11 @@
org.sleuthkit.autopsy.modules.encryptiondetection
org.sleuthkit.autopsy.modules.filetypeid
org.sleuthkit.autopsy.modules.hashdatabase
+ org.sleuthkit.autopsy.modules.interestingitems
org.sleuthkit.autopsy.modules.vmextractor
org.sleuthkit.autopsy.progress
org.sleuthkit.autopsy.report
+ org.sleuthkit.autopsy.testutils
org.sleuthkit.autopsy.textextractors
org.sleuthkit.autopsy.textextractors.configs
org.sleuthkit.autopsy.textsummarizer
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 class HashDbManager implements PropertyChangeListener {
*
* @throws TskCoreException
*/
- abstract boolean isValid() throws TskCoreException;
+ public abstract boolean isValid() throws TskCoreException;
public abstract String getIndexPath() throws TskCoreException;
@@ -1301,7 +1301,7 @@ public class HashDbManager implements PropertyChangeListener {
* @throws TskCoreException
*/
@Override
- boolean isValid() throws TskCoreException {
+ public boolean isValid() throws TskCoreException {
return hasIndex();
}
@@ -1646,7 +1646,7 @@ public class HashDbManager implements PropertyChangeListener {
* @return true if is valid, false otherwise
*/
@Override
- boolean isValid() {
+ public boolean isValid() {
if (!CentralRepository.isEnabled()) {
return false;
}