mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
05.37.2011 6e38a25bcc15a6127574925d6675a17d9f24d0b4
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/Attributes.java
@@ -23,6 +23,7 @@
 *
 *
 *      Copyright 2010 Sun Microsystems, Inc.
 *      Portions copyright 2011 ForgeRock AS.
 */
package org.forgerock.opendj.ldap;
@@ -614,7 +615,14 @@
  public static final Attribute unmodifiableAttribute(final Attribute attribute)
      throws NullPointerException
  {
    return new UnmodifiableAttribute(attribute);
    if (attribute instanceof UnmodifiableAttribute)
    {
      return attribute;
    }
    else
    {
      return new UnmodifiableAttribute(attribute);
    }
  }