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

floblanc
06.41.2009 2a9b31c0e78978b0ca7c7fe23b3729b201f5e323
Revert fix for 4341
2 files modified
10 ■■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/core/CompareOperationBasis.java 5 ●●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/core/ModifyOperationBasis.java 5 ●●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/core/CompareOperationBasis.java
@@ -233,10 +233,6 @@
   */
  public final AttributeType getAttributeType()
  {
    if (attributeType == null) {
      attributeType = DirectoryServer.getAttributeType(
          rawAttributeType.toLowerCase());
    }
    return attributeType;
  }
@@ -248,7 +244,6 @@
  public void setAttributeType(AttributeType attributeType)
  {
    this.attributeType = attributeType;
    this.rawAttributeType = attributeType.getNameOrOID();
  }
opendj-sdk/opends/src/server/org/opends/server/core/ModifyOperationBasis.java
@@ -291,11 +291,6 @@
  throws DirectoryException
  {
    modifications.add(modification);
    if (modification != null) {
      rawModifications.add(new LDAPModification(
            modification.getModificationType(),
            new LDAPAttribute(modification.getAttribute())));
    }
  }
  /**