From 44aad3f84d2a820094f3b5e73722778edc8c23f5 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 24 Apr 2007 22:40:57 +0000
Subject: [PATCH] Make several significant changes to the OpenDS code base, including:

---
 opends/src/server/org/opends/server/synchronization/protocol/AddMsg.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/opends/src/server/org/opends/server/synchronization/protocol/AddMsg.java b/opends/src/server/org/opends/server/synchronization/protocol/AddMsg.java
index 5d50687..754f067 100644
--- a/opends/src/server/org/opends/server/synchronization/protocol/AddMsg.java
+++ b/opends/src/server/org/opends/server/synchronization/protocol/AddMsg.java
@@ -41,10 +41,11 @@
 
 import org.opends.server.protocols.internal.InternalClientConnection;
 import org.opends.server.protocols.ldap.LDAPAttribute;
-import org.opends.server.protocols.ldap.LDAPException;
 import org.opends.server.synchronization.common.ChangeNumber;
 import org.opends.server.types.Attribute;
 import org.opends.server.types.AttributeValue;
+import org.opends.server.types.LDAPException;
+import org.opends.server.types.RawAttribute;
 
 import static org.opends.server.synchronization.protocol.OperationContext.*;
 import static org.opends.server.util.StaticUtils.toLowerCase;
@@ -188,7 +189,7 @@
                                       String newDn)
                       throws LDAPException, ASN1Exception
   {
-    ArrayList<LDAPAttribute> attr = new ArrayList<LDAPAttribute>();
+    ArrayList<RawAttribute> attr = new ArrayList<RawAttribute>();
     ArrayList<ASN1Element> elems;
 
     elems = ASN1Element.decodeElements(encodedAttributes);

--
Gitblit v1.10.0