From bdeda8fee4678025697882f4a8529bf57cb18cb5 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 17 Sep 2010 22:54:11 +0000
Subject: [PATCH] Split some of the parameters of the task schedule interaction in two: those who are always required and do not have a possible default and those who have a default value and can be optionally set.
---
opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliMain.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliMain.java b/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliMain.java
index addd00d..9aa3260 100644
--- a/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliMain.java
+++ b/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliMain.java
@@ -1656,8 +1656,9 @@
TaskScheduleInteraction interaction =
new TaskScheduleInteraction(uData.getTaskSchedule(), argParser.taskArgs,
- this, formatter, taskEntries,
- INFO_PURGE_HISTORICAL_TASK_NAME.get());
+ this, INFO_PURGE_HISTORICAL_TASK_NAME.get());
+ interaction.setFormatter(formatter);
+ interaction.setTaskEntries(taskEntries);
try
{
interaction.run();
--
Gitblit v1.10.0