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);
}
});