From d79928cc7cd9a3edf6f6a4dcf213234015cd0590 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 29 Jan 2016 15:01:25 +0000
Subject: [PATCH] DirectoryServer.java: Renamed getAttributeTypeOrDefault(String) to getAttributeType(String)

---
 opendj-server-legacy/src/main/java/org/opends/server/config/ConfigEntry.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigEntry.java b/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigEntry.java
index f4865a5..96efdce 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigEntry.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/config/ConfigEntry.java
@@ -195,7 +195,7 @@
    */
   public ConfigAttribute getConfigAttribute(ConfigAttribute stub) throws ConfigException
   {
-    AttributeType attrType = DirectoryServer.getAttributeTypeOrDefault(stub.getName());
+    AttributeType attrType = DirectoryServer.getAttributeType(stub.getName());
     List<Attribute> attrList = entry.getAttribute(attrType);
     return !attrList.isEmpty() ? stub.getConfigAttribute(attrList) : null;
   }

--
Gitblit v1.10.0