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

Gaetan Boismal
25.06.2016 14008013116d3a95440c6d33c1509ed1bb8e6bf3
opendj-server-legacy/src/main/java/org/opends/server/controls/MatchedValuesControl.java
@@ -31,6 +31,7 @@
import java.util.ArrayList;
import java.io.IOException;
import java.util.List;
import org.forgerock.opendj.io.*;
import org.forgerock.opendj.ldap.schema.AttributeType;
@@ -122,7 +123,7 @@
  /** The set of matched values filters for this control. */
  private final ArrayList<MatchedValuesFilter> filters;
  private final List<MatchedValuesFilter> filters;
@@ -136,7 +137,7 @@
   *                     return.
   */
  public MatchedValuesControl(boolean isCritical,
                              ArrayList<MatchedValuesFilter> filters)
                              List<MatchedValuesFilter> filters)
  {
    super(OID_MATCHED_VALUES, isCritical);
@@ -173,7 +174,7 @@
   *
   * @return  The set of filters associated with this matched values control.
   */
  public ArrayList<MatchedValuesFilter> getFilters()
  public List<MatchedValuesFilter> getFilters()
  {
    return filters;
  }