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

matthew_swift
04.12.2009 fa59221ed4c2777097b0fd1a38c6839d60680499
opendj-sdk/sdk/src/org/opends/sdk/AbstractConnection.java
@@ -254,10 +254,10 @@
    {
      // Got more entries than expected.
      Result result = Responses.newResult(
          ResultCode.CLIENT_SIDE_LOCAL_ERROR).setDiagnosticMessage(
          ResultCode.CLIENT_SIDE_MORE_RESULTS_TO_RETURN).setDiagnosticMessage(
          ERR_UNEXPECTED_SEARCH_RESULT_ENTRIES.get(handler.entryCount)
              .toString());
      throw new ErrorResultException(result);
      throw ErrorResultException.wrap(result);
    }
    else if (handler.firstReference != null)
    {
@@ -267,7 +267,7 @@
          ERR_UNEXPECTED_SEARCH_RESULT_REFERENCES.get(
              handler.firstReference.getURIs().iterator().next())
              .toString());
      throw new ErrorResultException(result);
      throw ErrorResultException.wrap(result);
    }
    else
    {