From 6db285974b90f3c62c6995037b6e06097b888335 Mon Sep 17 00:00:00 2001
From: Ludovic Poitou <ludovic.poitou@forgerock.com>
Date: Thu, 04 Apr 2013 09:42:12 +0000
Subject: [PATCH] Fix minor typos.
---
opendj-sdk/opends/src/server/org/opends/server/types/EntryEncodeConfig.java | 16 +++++++---------
1 files changed, 7 insertions(+), 9 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/types/EntryEncodeConfig.java b/opendj-sdk/opends/src/server/org/opends/server/types/EntryEncodeConfig.java
index 0c86c06..b1e0d97 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/types/EntryEncodeConfig.java
+++ b/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;
}
--
Gitblit v1.10.0