From 61566abc6ddfcad1491e3bb71a5cc157daf6dd57 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 18 Nov 2009 17:17:48 +0000
Subject: [PATCH] Fix for issue 4189 (dsconfig : --commandFilePath mis-behaviour when correcting errors in interactiv mode)
---
opendj-sdk/opends/src/server/org/opends/server/tools/dsconfig/PropertyValueEditor.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/tools/dsconfig/PropertyValueEditor.java b/opendj-sdk/opends/src/server/org/opends/server/tools/dsconfig/PropertyValueEditor.java
index c0b98c1..592707c 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/tools/dsconfig/PropertyValueEditor.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/tools/dsconfig/PropertyValueEditor.java
@@ -2219,8 +2219,8 @@
// The modifications performed: we assume that at most there is one
// modification per property definition.
- private final List<PropertyEditorModification> mods =
- new ArrayList<PropertyEditorModification>();
+ private final List<PropertyEditorModification<?>> mods =
+ new ArrayList<PropertyEditorModification<?>>();
// Whether the last type of choice made by the user in a menu is a
// reset
@@ -2576,7 +2576,7 @@
* @return the modifications that have been applied during the last call of
* the method PropertyValueEditor.edit.
*/
- public Collection<PropertyEditorModification> getModifications()
+ public Collection<PropertyEditorModification<?>> getModifications()
{
return mods;
}
--
Gitblit v1.10.0