From 80868442fde3936460bae6d53c4b9e27444a1ff1 Mon Sep 17 00:00:00 2001 From: Brian Carrier Date: Wed, 28 Feb 2018 10:45:05 -0500 Subject: [PATCH] Made method public so that modules would know what sets were configured --- .../autopsy/modules/interestingitems/FilesSetsManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/interestingitems/FilesSetsManager.java b/Core/src/org/sleuthkit/autopsy/modules/interestingitems/FilesSetsManager.java index 11831a77c8..7347d32c8f 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/interestingitems/FilesSetsManager.java +++ b/Core/src/org/sleuthkit/autopsy/modules/interestingitems/FilesSetsManager.java @@ -147,7 +147,7 @@ public final class FilesSetsManager extends Observable { * @return A map of interesting files set names to interesting file sets, * possibly empty. */ - Map getInterestingFilesSets() throws FilesSetsManagerException { + public Map getInterestingFilesSets() throws FilesSetsManagerException { synchronized (INTERESTING_FILES_SET_LOCK) { return InterestingItemsFilesSetSettings.readDefinitionsFile(INTERESTING_FILES_SET_DEFS_NAME, LEGACY_FILES_SET_DEFS_FILE_NAME); }