From e7f6fe01b389bcfbc032c79790de83b98667b20a Mon Sep 17 00:00:00 2001 From: Ann Priestman Date: Thu, 10 Sep 2015 13:45:24 -0400 Subject: [PATCH] Cleanup --- .../autopsy/core/UserPreferences.java | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/core/UserPreferences.java b/Core/src/org/sleuthkit/autopsy/core/UserPreferences.java index cb14b55594..5b7a5b705c 100755 --- a/Core/src/org/sleuthkit/autopsy/core/UserPreferences.java +++ b/Core/src/org/sleuthkit/autopsy/core/UserPreferences.java @@ -57,22 +57,23 @@ public final class UserPreferences { // Prevent instantiation. private UserPreferences() { } - + /** - * Reload all preferences from disk. - * This is only needed if the preferences file is being directly modified on disk - * while Viking is running. - * @throws Exception + * Reload all preferences from disk. This is only needed if the preferences + * file is being directly modified on disk while Autopsy is running. + * + * @throws Exception */ public static void reloadFromStorage() throws Exception { preferences.sync(); } - + /** - * Saves the current preferences to storage. - * This is only needed if the preferences files are going to be copied - * to another location while Viking is running. - * @throws Exception + * Saves the current preferences to storage. This is only needed if the + * preferences files are going to be copied to another location while + * Autopsy is running. + * + * @throws Exception */ public static void saveToStorage() throws Exception { preferences.flush();