From 22094368c2865dcfb6daf8366425212b721a4657 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 05 Feb 2009 17:42:14 +0000
Subject: [PATCH] Merge ASN1 branch to trunk
---
opends/src/guitools/org/opends/guitools/controlpanel/ui/NewIndexPanel.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/guitools/org/opends/guitools/controlpanel/ui/NewIndexPanel.java b/opends/src/guitools/org/opends/guitools/controlpanel/ui/NewIndexPanel.java
index fc46116..6814967 100644
--- a/opends/src/guitools/org/opends/guitools/controlpanel/ui/NewIndexPanel.java
+++ b/opends/src/guitools/org/opends/guitools/controlpanel/ui/NewIndexPanel.java
@@ -635,7 +635,7 @@
indexEntry.getObjectClassAttribute().iterator();
while (it.hasNext())
{
- oc.add(it.next().getStringValue());
+ oc.add(it.next().getValue().toString());
}
attrs.put(oc);
@@ -647,7 +647,7 @@
it = odsAttr.iterator();
while (it.hasNext())
{
- attr.add(it.next().getStringValue());
+ attr.add(it.next().getValue().toString());
}
attrs.put(attr);
}
--
Gitblit v1.10.0