From 44aad3f84d2a820094f3b5e73722778edc8c23f5 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 24 Apr 2007 22:40:57 +0000
Subject: [PATCH] Make several significant changes to the OpenDS code base, including:

---
 opends/src/server/org/opends/server/api/AttributeValueDecoder.java |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/opends/src/server/org/opends/server/api/AttributeValueDecoder.java b/opends/src/server/org/opends/server/api/AttributeValueDecoder.java
index 0e4b503..8693c89 100644
--- a/opends/src/server/org/opends/server/api/AttributeValueDecoder.java
+++ b/opends/src/server/org/opends/server/api/AttributeValueDecoder.java
@@ -26,17 +26,20 @@
  */
 package org.opends.server.api;
 
+
+
 import org.opends.server.types.AttributeValue;
 import org.opends.server.types.DirectoryException;
 
+
+
 /**
  * A factory interface for decoding attribute values into objects.
  *
- * @param <T>
- *          Decode the attribute value to an object of this type.
+ * @param  <T>  Decode the attribute value to an object of this type.
  */
-public interface AttributeValueDecoder<T> {
-
+public interface AttributeValueDecoder<T>
+{
   /**
    * Decode the specified attribute value to an object of type T.
    *
@@ -48,3 +51,4 @@
    */
   T decode(AttributeValue value) throws DirectoryException;
 }
+

--
Gitblit v1.10.0