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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/protocols/ldap/UnbindRequestProtocolOp.java
@@ -66,7 +66,6 @@
   */
  public byte getType()
  {
    return OP_TYPE_UNBIND_REQUEST;
  }
@@ -79,7 +78,6 @@
   */
  public String getProtocolOpName()
  {
    return "Unbind Request";
  }
@@ -93,7 +91,6 @@
   */
  public ASN1Element encode()
  {
    return new ASN1Null(OP_TYPE_UNBIND_REQUEST);
  }
@@ -112,7 +109,6 @@
  public static UnbindRequestProtocolOp decodeUnbindRequest(ASN1Element element)
         throws LDAPException
  {
    try
    {
      element.decodeAsNull();
@@ -141,7 +137,6 @@
   */
  public void toString(StringBuilder buffer)
  {
    buffer.append("UnbindRequest()");
  }
@@ -157,7 +152,6 @@
   */
  public void toString(StringBuilder buffer, int indent)
  {
    for (int i=0; i < indent; i++)
    {
      buffer.append(' ');