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

boli
04.24.2008 f67af7588ba1f7827bc6ff907729d14bf39a19f6
opends/src/server/org/opends/server/core/SearchOperationBasis.java
@@ -582,13 +582,6 @@
  public final boolean returnEntry(Entry entry, List<Control> controls)
  {
    boolean typesOnly = getTypesOnly();
    // See if the operation has been abandoned.  If so, then don't send the
    // entry and indicate that the search should end.
    if (getCancelRequest() != null)
    {
      setResultCode(ResultCode.CANCELED);
      return false;
    }
    // See if the size limit has been exceeded.  If so, then don't send the
    // entry and indicate that the search should end.
@@ -1005,15 +998,6 @@
   */
  public final boolean returnReference(DN dn, SearchResultReference reference)
  {
    // See if the operation has been abandoned.  If so, then don't send the
    // reference and indicate that the search should end.
    if (getCancelRequest() != null)
    {
      setResultCode(ResultCode.CANCELED);
      return false;
    }
    // See if the time limit has expired.  If so, then don't send the entry and
    // indicate that the search should end.
    if ((getTimeLimit() > 0) && (TimeThread.getTime() >=