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

Jean-Noël Rouvignac
20.42.2016 61b9eb1be03fc03a9f4bb0013a08ff44a1059503
opendj-server-legacy/src/main/java/org/opends/server/controls/SubtreeDeleteControl.java
@@ -12,7 +12,7 @@
 * information: "Portions Copyright [year] [name of copyright owner]".
 *
 * Copyright 2009 Sun Microsystems, Inc.
 * Portions Copyright 2014-2015 ForgeRock AS.
 * Portions Copyright 2014-2016 ForgeRock AS.
 */
package org.opends.server.controls;
@@ -39,14 +39,11 @@
 */
public class SubtreeDeleteControl extends Control
{
  /**
   * ControlDecoder implementation to decode this control from a
   * ByteString.
   */
  /** ControlDecoder implementation to decode this control from a ByteString. */
  private static final class Decoder implements
      ControlDecoder<SubtreeDeleteControl>
  {
    /** {@inheritDoc} */
    @Override
    public SubtreeDeleteControl decode(boolean isCritical,
        ByteString value) throws DirectoryException
    {
@@ -62,6 +59,7 @@
    @Override
    public String getOID()
    {
      return OID_SUBTREE_DELETE_CONTROL;
@@ -71,9 +69,7 @@
  /**
   * The Control Decoder that can be used to decode this control.
   */
  /** The Control Decoder that can be used to decode this control. */
  public static final ControlDecoder<SubtreeDeleteControl> DECODER =
      new Decoder();
@@ -93,7 +89,6 @@
  /** {@inheritDoc} */
  @Override
  protected void writeValue(ASN1Writer writer) throws IOException
  {
@@ -102,7 +97,6 @@
  /** {@inheritDoc} */
  @Override
  public void toString(StringBuilder buffer)
  {