From 8298101415278c4a3504c1f5dc09e0e53dd83e37 Mon Sep 17 00:00:00 2001
From: Violette Roche-Montane <violette.roche-montane@forgerock.com>
Date: Mon, 14 Apr 2014 14:52:42 +0000
Subject: [PATCH] OPENDJ-1343 Migrate dsconfig - Removed unnecessary interface ManagementContextFactory. - Minor code cleanup.
---
opendj3-server-dev/src/server/org/opends/server/tools/dsconfig/SubCommandHandlerFactory.java | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/tools/dsconfig/SubCommandHandlerFactory.java b/opendj3-server-dev/src/server/org/opends/server/tools/dsconfig/SubCommandHandlerFactory.java
index 690f3e0..b76e90c 100644
--- a/opendj3-server-dev/src/server/org/opends/server/tools/dsconfig/SubCommandHandlerFactory.java
+++ b/opendj3-server-dev/src/server/org/opends/server/tools/dsconfig/SubCommandHandlerFactory.java
@@ -84,9 +84,9 @@
/** {@inheritDoc} */
- public <C extends ConfigurationClient, S extends Configuration>
- Void visitOptional(
- OptionalRelationDefinition<C, S> rd, ManagedObjectPath<?, ?> p) {
+ public <C extends ConfigurationClient, S extends Configuration> Void visitOptional(
+ OptionalRelationDefinition<C, S> rd, ManagedObjectPath<?, ?> p)
+ {
try {
// Create the sub-commands.
createHandlers.add(CreateSubCommandHandler.create(parser, p, rd));
@@ -108,9 +108,9 @@
/** {@inheritDoc} */
- public <C extends ConfigurationClient, S extends Configuration>
- Void visitSet(
- SetRelationDefinition<C, S> rd, ManagedObjectPath<?, ?> p) {
+ public <C extends ConfigurationClient, S extends Configuration> Void visitSet(
+ SetRelationDefinition<C, S> rd, ManagedObjectPath<?, ?> p)
+ {
try {
// Create the sub-commands.
createHandlers.add(CreateSubCommandHandler.create(parser, p, rd));
--
Gitblit v1.10.0