From 96483a719fbc07f7b1ab1e1aed482743634a615e Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 01 Jul 2010 14:35:48 +0000
Subject: [PATCH] Split Types utility class into Attributes and Entries sub-classes so that they are easier to find.

---
 sdk/src/org/opends/sdk/controls/PreReadResponseControl.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sdk/src/org/opends/sdk/controls/PreReadResponseControl.java b/sdk/src/org/opends/sdk/controls/PreReadResponseControl.java
index 2854ca1..5f5953b 100644
--- a/sdk/src/org/opends/sdk/controls/PreReadResponseControl.java
+++ b/sdk/src/org/opends/sdk/controls/PreReadResponseControl.java
@@ -22,7 +22,7 @@
  * CDDL HEADER END
  *
  *
- *      Copyright 2009 Sun Microsystems, Inc.
+ *      Copyright 2009-2010 Sun Microsystems, Inc.
  */
 
 package org.opends.sdk.controls;
@@ -121,7 +121,7 @@
        * rather than an Entry. Can we assume that the response will not contain
        * a nested set of controls?
        */
-      return new PreReadResponseControl(control.isCritical(), Types
+      return new PreReadResponseControl(control.isCritical(), Entries
           .unmodifiableEntry(searchEntry));
     }
 
@@ -155,7 +155,7 @@
      * SearchResultEntry rather than an Entry. Can we assume that the response
      * will not contain a nested set of controls?
      */
-    return new PreReadResponseControl(false, Types.unmodifiableEntry(entry));
+    return new PreReadResponseControl(false, Entries.unmodifiableEntry(entry));
   }
 
 

--
Gitblit v1.10.0