From ae171bffab3d4c19c00de9a0c78e42a8f4bb9627 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Mon, 02 Apr 2007 22:25:59 +0000
Subject: [PATCH] - Succeeded in removing the Utils.isUninstall() method. All the logic that was being controlled by if statements using this method has been moved to the applications themselves (except for a few hacks that I've documented in the code)
---
opends/src/quicksetup/org/opends/quicksetup/UserDataException.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/UserDataException.java b/opends/src/quicksetup/org/opends/quicksetup/UserDataException.java
index 2fcf813..26df344 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/UserDataException.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/UserDataException.java
@@ -37,7 +37,7 @@
{
private static final long serialVersionUID = 1798143194655443132L;
- private Step step;
+ private WizardStep step;
private String localizedMessage;
@@ -46,7 +46,7 @@
* @param step the step in the wizard where the exception occurred.
* @param localizedMessage the localized message describing the error.
*/
- public UserDataException(Step step, String localizedMessage)
+ public UserDataException(WizardStep step, String localizedMessage)
{
super(localizedMessage);
this.step = step;
@@ -66,7 +66,7 @@
* Returns the step of the wizard in which this exception occurred.
* @return the step of the wizard in which this exception occurred.
*/
- public Step getStep()
+ public WizardStep getStep()
{
return step;
}
--
Gitblit v1.10.0