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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/core/PersistentSearch.java
@@ -90,7 +90,6 @@
                          Set<PersistentSearchChangeType> changeTypes,
                          boolean returnECs)
  {
    this.searchOperation = searchOperation;
    this.changeTypes     = changeTypes;
    this.returnECs       = returnECs;
@@ -109,7 +108,6 @@
   */
  public SearchOperation getSearchOperation()
  {
    return searchOperation;
  }
@@ -122,7 +120,6 @@
   */
  public Set<PersistentSearchChangeType> getChangeTypes()
  {
    return changeTypes;
  }
@@ -135,7 +132,6 @@
   */
  public boolean getReturnECs()
  {
    return returnECs;
  }
@@ -148,7 +144,6 @@
   */
  public DN getBaseDN()
  {
    return baseDN;
  }
@@ -161,7 +156,6 @@
   */
  public SearchScope getScope()
  {
    return scope;
  }
@@ -174,7 +168,6 @@
   */
  public SearchFilter getFilter()
  {
    return filter;
  }
@@ -188,8 +181,6 @@
   */
  public void processAdd(AddOperation addOperation, Entry entry)
  {
    // See if we care about add operations.
    if (! changeTypes.contains(PersistentSearchChangeType.ADD))
    {
@@ -305,8 +296,6 @@
   */
  public void processDelete(DeleteOperation deleteOperation, Entry entry)
  {
    // See if we care about delete operations.
    if (! changeTypes.contains(PersistentSearchChangeType.DELETE))
    {
@@ -424,8 +413,6 @@
  public void processModify(ModifyOperation modifyOperation, Entry oldEntry,
                            Entry newEntry)
  {
    // See if we care about modify operations.
    if (! changeTypes.contains(PersistentSearchChangeType.MODIFY))
    {
@@ -544,8 +531,6 @@
  public void processModifyDN(ModifyDNOperation modifyDNOperation,
                              Entry oldEntry, Entry newEntry)
  {
    // See if we care about modify DN operations.
    if (! changeTypes.contains(PersistentSearchChangeType.MODIFY_DN))
    {
@@ -684,7 +669,6 @@
   */
  public String toString()
  {
    StringBuilder buffer = new StringBuilder();
    toString(buffer);
    return buffer.toString();
@@ -700,7 +684,6 @@
   */
  public void toString(StringBuilder buffer)
  {
    buffer.append("PersistentSearch(connID=");
    buffer.append(searchOperation.getConnectionID());
    buffer.append(",opID=");