From 90288dc278771356aa6dfa3832cb4a4bb19e9fab Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 04 Jul 2007 16:48:57 +0000
Subject: [PATCH] This commit's design changes have been reviewed and approved by Brian Ehret.
---
opends/src/quicksetup/org/opends/quicksetup/Application.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/Application.java b/opends/src/quicksetup/org/opends/quicksetup/Application.java
index ed9eaaa..bb9a906 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/Application.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/Application.java
@@ -443,15 +443,15 @@
* exception.
* This method applies a margin if the applyMargin parameter is
* <CODE>true</CODE>.
- * @param ex the exception.
+ * @param t the exception.
* @param applyMargin specifies whether we apply a margin or not to the
* resulting formatted text.
* @return the formatted representation of an error message for the given
* exception.
*/
- protected String getFormattedError(Exception ex, boolean applyMargin)
+ protected String getFormattedError(Throwable t, boolean applyMargin)
{
- return formatter.getFormattedError(ex, applyMargin);
+ return formatter.getFormattedError(t, applyMargin);
}
/**
@@ -488,7 +488,7 @@
* Returns the installation path.
* @return the installation path.
*/
- protected abstract String getInstallationPath();
+ public abstract String getInstallationPath();
/**
* Gets the current step.
--
Gitblit v1.10.0