From bb80bfde1542fd9366908da92a6678acebc12ddd Mon Sep 17 00:00:00 2001 From: "U-BASIS\\dsmyda" Date: Wed, 2 Jan 2019 14:42:56 -0500 Subject: [PATCH] Commented new methods in UserPreferences --- Core/src/org/sleuthkit/autopsy/core/UserPreferences.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/core/UserPreferences.java b/Core/src/org/sleuthkit/autopsy/core/UserPreferences.java index bf4d5dc3c1..f96cd05969 100644 --- a/Core/src/org/sleuthkit/autopsy/core/UserPreferences.java +++ b/Core/src/org/sleuthkit/autopsy/core/UserPreferences.java @@ -475,16 +475,19 @@ public final class UserPreferences { } /** + * Set the HdX path. * - * @param executablePath + * @param executablePath User-inputted path to HxD executable */ public static void setHdXEditorPath(String executablePath) { preferences.put(HDX_EDITOR_PATH, executablePath); } /** + * Retrieves the HdXEditor path set by the User. If not found, the default + * will be the default install location of HxD. * - * @return + * @return Path to HdX */ public static String getHdXEditorPath() { return preferences.get(HDX_EDITOR_PATH, Paths.get("C:", "Program Files", "HxD", "HxD.exe").toString());