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/PostReadResponseControl.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sdk/src/org/opends/sdk/controls/PostReadResponseControl.java b/sdk/src/org/opends/sdk/controls/PostReadResponseControl.java
index ecbb514..56f7631 100644
--- a/sdk/src/org/opends/sdk/controls/PostReadResponseControl.java
+++ b/sdk/src/org/opends/sdk/controls/PostReadResponseControl.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 PostReadResponseControl(control.isCritical(), Types
+ return new PostReadResponseControl(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 PostReadResponseControl(false, Types.unmodifiableEntry(entry));
+ return new PostReadResponseControl(false, Entries.unmodifiableEntry(entry));
}
--
Gitblit v1.10.0