From 06efec11f65d0b9375711a208ac8dad6ab3cbd7e Mon Sep 17 00:00:00 2001 From: adam-m Date: Wed, 16 Jan 2013 14:15:29 -0500 Subject: [PATCH] strip html from message --- .../sleuthkit/autopsy/keywordsearch/Installer.java | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Installer.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Installer.java index 7645d64e0f..3808261efb 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Installer.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Installer.java @@ -184,9 +184,9 @@ public class Installer extends ModuleInstall { WindowManager.getDefault().invokeWhenUIReady(new Runnable() { @Override public void run() { - final String msg = "Indexing server port " + curFailPort + " is not available. " + final String msg = "Indexing server port " + curFailPort + " is not available. " + " Consider changing " + Server.PROPERTIES_CURRENT_SERVER_PORT + " in " - + Server.PROPERTIES_FILE + " property file in the application user folder."; + + Server.PROPERTIES_FILE + " property file in the application user folder."; MessageNotifyUtil.Notify.error("Error initializing Keyword Search module", msg); } }); @@ -196,9 +196,9 @@ public class Installer extends ModuleInstall { WindowManager.getDefault().invokeWhenUIReady(new Runnable() { @Override public void run() { - final String msg = "Indexing server stop port " + curFailPort + " is not available. " + final String msg = "Indexing server stop port " + curFailPort + " is not available. " + " Consider changing " + Server.PROPERTIES_CURRENT_STOP_PORT + " in " - + Server.PROPERTIES_FILE + " property file in the application user folder."; + + Server.PROPERTIES_FILE + " property file in the application user folder."; MessageNotifyUtil.Notify.error("Error initializing Keyword Search module", msg); } }); @@ -208,9 +208,8 @@ public class Installer extends ModuleInstall { WindowManager.getDefault().invokeWhenUIReady(new Runnable() { @Override public void run() { - final String msg = "Error initializing Keyword Search module.
" - + "File indexing and search will not be functional.
" - + "Please try to restart your computer and the application."; + final String msg = "File indexing and search will not be functional." + + "Please try to restart your computer and the application."; MessageNotifyUtil.Notify.error("Error initializing Keyword Search module", msg); } });