mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
27.44.2011 909d81699029e3d0a99e200d09147f62c2a56ccc
Minor fixes to Javadoc.
2 files modified
16 ■■■■ changed files
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/Filter.java 8 ●●●● patch | view | raw | blame | history
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/Matcher.java 8 ●●●● patch | view | raw | blame | history
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/Filter.java
@@ -2089,18 +2089,18 @@
  /**
   * Indicates whether this {@code Filter} matches the provided {@code Entry}
   * using the schema associated with the entry.
   * using the default schema.
   * <p>
   * Calling this method is equivalent to the following:
   *
   * <pre>
   * boolean b = matcher(entry.getSchema()).matches(entry);
   * matcher().matches(entry);
   * </pre>
   *
   * @param entry
   *          The entry to be matched.
   * @return {@code true} if this {@code Filter} matches the provided {@code
   *         Entry}.
   * @return The result of matching the provided {@code Entry} against this
   *         {@code Filter} using the default schema.
   */
  public ConditionResult matches(final Entry entry)
  {
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/Matcher.java
@@ -831,13 +831,13 @@
  /**
   * Indicates whether this filter {@code Matcher} matches the provided {@code
   * Entry}.
   * Indicates whether this filter {@code Matcher} matches the provided
   * {@code Entry}.
   *
   * @param entry
   *          The entry to be matched.
   * @return {@code true} if this filter {@code Matcher} matches the provided
   *         {@code Entry}.
   * @return The result of matching the provided {@code Entry} against this
   *         filter {@code Matcher}.
   */
  public ConditionResult matches(final Entry entry)
  {