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/tools/LDIFSearch.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/tools/LDIFSearch.java b/opendj-server-legacy/src/main/java/org/opends/server/tools/LDIFSearch.java
index 81e0983..dd80d24 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/tools/LDIFSearch.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/tools/LDIFSearch.java
@@ -484,7 +484,7 @@
LinkedHashSet<AttributeType> operationalAttributeTypes = new LinkedHashSet<>();
for (String attributeName : attributeNames)
{
- AttributeType t = DirectoryServer.getAttributeTypeOrDefault(attributeName);
+ AttributeType t = DirectoryServer.getAttributeType(attributeName);
if (t.isOperational())
{
operationalAttributeTypes.add(t);
--
Gitblit v1.10.0