From 595b0d2a712585e169ccde6476818e72c2c75630 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 01 Apr 2016 10:15:43 +0000
Subject: [PATCH] Removed all uses of AttributeType.getNormalizedNameOrOID()
---
opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/HistoricalTest.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/HistoricalTest.java b/opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/HistoricalTest.java
index 298ec4b..5e6b083 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/HistoricalTest.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/HistoricalTest.java
@@ -340,7 +340,7 @@
private static void publishModify(ReplicationBroker broker, CSN changeNum,
DN dn, String entryuuid, AttributeType attrType, String newValue)
{
- Attribute attr = Attributes.create(attrType.getNormalizedNameOrOID(), newValue);
+ Attribute attr = Attributes.create(attrType, newValue);
List<Modification> mods = newArrayList(new Modification(ModificationType.ADD, attr));
broker.publish(new ModifyMsg(changeNum, dn, mods, entryuuid));
}
--
Gitblit v1.10.0