From f2160f4bd1c8ac67e5a86a6710d431e8932877f9 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 28 May 2010 11:47:51 +0000
Subject: [PATCH] Synchronize SDK on java.net with internal repository.

---
 sdk/src/com/sun/opends/sdk/util/Predicate.java |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/sdk/src/com/sun/opends/sdk/util/Predicate.java b/sdk/src/com/sun/opends/sdk/util/Predicate.java
index d2eb188..34253e0 100644
--- a/sdk/src/com/sun/opends/sdk/util/Predicate.java
+++ b/sdk/src/com/sun/opends/sdk/util/Predicate.java
@@ -30,28 +30,28 @@
 
 
 /**
- * Predicates transform input values of type {@code M} to a boolean
- * output value and are typically used for performing filtering.
+ * Predicates transform input values of type {@code M} to a boolean output value
+ * and are typically used for performing filtering.
  *
  * @param <M>
  *          The type of input values matched by this predicate.
  * @param <P>
- *          The type of the additional parameter to this predicate's
- *          {@code matches} method. Use {@link java.lang.Void} for
- *          predicates that do not need an additional parameter.
+ *          The type of the additional parameter to this predicate's {@code
+ *          matches} method. Use {@link java.lang.Void} for predicates that do
+ *          not need an additional parameter.
  */
 public interface Predicate<M, P>
 {
   /**
-   * Indicates whether or not this predicate matches the provided input
-   * value of type {@code M}.
+   * Indicates whether or not this predicate matches the provided input value of
+   * type {@code M}.
    *
    * @param value
    *          The input value for which to make the determination.
    * @param p
    *          A predicate specified parameter.
-   * @return {@code true} if this predicate matches {@code value},
-   *         otherwise {@code false}.
+   * @return {@code true} if this predicate matches {@code value}, otherwise
+   *         {@code false}.
    */
   boolean matches(M value, P p);
 }

--
Gitblit v1.10.0