From 0331ba4d64cf3de5dff1d4b4895cd2fae9cec7ef Mon Sep 17 00:00:00 2001 From: Ann Priestman Date: Wed, 6 Sep 2017 09:05:33 -0400 Subject: [PATCH] Temporarily hide hash sets and organizations --- .../centralrepository/actions/EamCaseEditDetailsDialog.java | 3 +++ .../centralrepository/optionspanel/GlobalSettingsPanel.java | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Core/src/org/sleuthkit/autopsy/centralrepository/actions/EamCaseEditDetailsDialog.java b/Core/src/org/sleuthkit/autopsy/centralrepository/actions/EamCaseEditDetailsDialog.java index 80f9c92b03..5b7e2386f2 100644 --- a/Core/src/org/sleuthkit/autopsy/centralrepository/actions/EamCaseEditDetailsDialog.java +++ b/Core/src/org/sleuthkit/autopsy/centralrepository/actions/EamCaseEditDetailsDialog.java @@ -82,6 +82,9 @@ public class EamCaseEditDetailsDialog extends JDialog { private void customizeComponents() { setTextBoxListeners(); setTextAreaListeners(); + + // The organization functions of central repo are not being included in the current release. + this.pnOrganization.setVisible(false); } diff --git a/Core/src/org/sleuthkit/autopsy/centralrepository/optionspanel/GlobalSettingsPanel.java b/Core/src/org/sleuthkit/autopsy/centralrepository/optionspanel/GlobalSettingsPanel.java index c0be22bf90..bfe3bfe941 100644 --- a/Core/src/org/sleuthkit/autopsy/centralrepository/optionspanel/GlobalSettingsPanel.java +++ b/Core/src/org/sleuthkit/autopsy/centralrepository/optionspanel/GlobalSettingsPanel.java @@ -59,6 +59,9 @@ public final class GlobalSettingsPanel extends IngestModuleGlobalSettingsPanel i "GlobalSettingsPanel.cbUseCentralRepo.text=Use a Central Repository"}) private void customizeComponents() { setName(Bundle.GlobalSettingsPanel_title()); + + // The hash set functions of central repo are not being included in the current release. + bnImportDatabase.setVisible(false); } private void addIngestJobEventsListener() {