From 664eac71955fcceba752801c55b091a197546b84 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 05 Aug 2016 19:09:24 +0000
Subject: [PATCH] Partial OPENDJ-2625 Convert all code that uses JNDI to use the SDK instead
---
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/NewVLVIndexPanel.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/NewVLVIndexPanel.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/NewVLVIndexPanel.java
index 9058288..bcf402f 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/NewVLVIndexPanel.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/NewVLVIndexPanel.java
@@ -269,9 +269,9 @@
}
}
- private void createVLVIndexOnline(ConnectionWrapper ctx) throws Exception
+ private void createVLVIndexOnline(ConnectionWrapper conn) throws Exception
{
- final BackendCfgClient backend = ctx.getRootConfiguration().getBackend(backendName.getText());
+ final BackendCfgClient backend = conn.getRootConfiguration().getBackend(backendName.getText());
createBackendVLVIndexOnline((PluggableBackendCfgClient) backend);
}
--
Gitblit v1.10.0