From 644f5eeff8c7ac405946964383b95eb93ab3086d Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 13 Feb 2008 16:02:58 +0000
Subject: [PATCH] Add a line break to the progress message displayed when we enable the windows service.
---
opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java b/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
index 4f83f92..c645cb6 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/installer/Installer.java
@@ -1753,10 +1753,11 @@
* @throws ApplicationException if something goes wrong.
*/
protected void enableWindowsService() throws ApplicationException {
- notifyListeners(getFormattedProgress(
+ notifyListeners(getFormattedWithPoints(
INFO_PROGRESS_ENABLING_WINDOWS_SERVICE.get()));
InstallerHelper helper = new InstallerHelper();
helper.enableWindowsService();
+ notifyListeners(getLineBreak());
}
/**
--
Gitblit v1.10.0