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

Ludovic Poitou
04.42.2013 6db285974b90f3c62c6995037b6e06097b888335
Fix minor typos.
1 files modified
16 ■■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/types/EntryEncodeConfig.java 16 ●●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/types/EntryEncodeConfig.java
@@ -23,6 +23,7 @@
 *
 *
 *      Copyright 2009 Sun Microsystems, Inc.
 *      Portions copyright 2013 ForgeRock AS.
 */
package org.opends.server.types;
@@ -99,7 +100,7 @@
  /**
   * Creates a new encoded entry configuration wtih the default
   * Creates a new encoded entry configuration with the default
   * settings.
   */
  public EntryEncodeConfig()
@@ -116,7 +117,7 @@
  /**
   * Creates a new encoded entry configuration wtih the specified
   * Creates a new encoded entry configuration with the specified
   * settings.
   *
   * @param  excludeDN                 Indicates whether to exclude
@@ -158,7 +159,7 @@
  /**
   * Creates a new encoded entry configuration wtih the specified
   * Creates a new encoded entry configuration with the specified
   * settings.
   *
   * @param  excludeDN                 Indicates whether to exclude
@@ -302,22 +303,19 @@
    boolean excludeDN = false;
    byte b = buffer.get();
    if ((b & ENCODE_FLAG_EXCLUDE_DN) ==
        ENCODE_FLAG_EXCLUDE_DN)
    if ((b & ENCODE_FLAG_EXCLUDE_DN) == ENCODE_FLAG_EXCLUDE_DN)
    {
      excludeDN = true;
    }
    boolean compressAttrDescriptions = false;
    if ((b & ENCODE_FLAG_COMPRESS_ADS) ==
        ENCODE_FLAG_COMPRESS_ADS)
    if ((b & ENCODE_FLAG_COMPRESS_ADS) == ENCODE_FLAG_COMPRESS_ADS)
    {
      compressAttrDescriptions = true;
    }
    boolean compressObjectClassSets = false;
    if ((b & ENCODE_FLAG_COMPRESS_OCS) ==
        ENCODE_FLAG_COMPRESS_OCS)
    if ((b & ENCODE_FLAG_COMPRESS_OCS) == ENCODE_FLAG_COMPRESS_OCS)
    {
      compressObjectClassSets = true;
    }