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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/protocols/ldap/SearchResultReferenceProtocolOp.java
@@ -72,7 +72,6 @@
   */
  public SearchResultReferenceProtocolOp(List<String> referralURLs)
  {
    if (referralURLs == null)
    {
      this.referralURLs = new ArrayList<String>();
@@ -94,7 +93,6 @@
   */
  public SearchResultReferenceProtocolOp(SearchResultReference searchReference)
  {
    referralURLs = searchReference.getReferralURLs();
    if (referralURLs == null)
    {
@@ -113,7 +111,6 @@
   */
  public List<String> getReferralURLs()
  {
    return referralURLs;
  }
@@ -126,7 +123,6 @@
   */
  public byte getType()
  {
    return OP_TYPE_SEARCH_RESULT_REFERENCE;
  }
@@ -139,7 +135,6 @@
   */
  public String getProtocolOpName()
  {
    return "Search Result Reference";
  }
@@ -153,7 +148,6 @@
   */
  public ASN1Element encode()
  {
    ArrayList<ASN1Element> elements =
         new ArrayList<ASN1Element>(referralURLs.size());
    for (String url : referralURLs)
@@ -182,7 +176,6 @@
                     decodeSearchReference(ASN1Element element)
         throws LDAPException
  {
    ArrayList<ASN1Element> elements;
    try
    {
@@ -235,7 +228,6 @@
   */
  public void toString(StringBuilder buffer)
  {
    buffer.append("SearchReference(referralURLs={");
    if (! referralURLs.isEmpty())
@@ -265,7 +257,6 @@
   */
  public void toString(StringBuilder buffer, int indent)
  {
    StringBuilder indentBuf = new StringBuilder(indent);
    for (int i=0 ; i < indent; i++)
    {