From 61b9eb1be03fc03a9f4bb0013a08ff44a1059503 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 20 Apr 2016 14:25:46 +0000
Subject: [PATCH] opendj-server-legacy: added @Override + Autorefactor'ed comments

---
 opendj-server-legacy/src/main/java/org/opends/server/extensions/StartTLSExtendedOperation.java |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/extensions/StartTLSExtendedOperation.java b/opendj-server-legacy/src/main/java/org/opends/server/extensions/StartTLSExtendedOperation.java
index dce63be..b36cfb6 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/extensions/StartTLSExtendedOperation.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/extensions/StartTLSExtendedOperation.java
@@ -37,7 +37,6 @@
 public class StartTLSExtendedOperation
        extends ExtendedOperationHandler<StartTLSExtendedOperationHandlerCfg>
 {
-
   /**
    * Create an instance of this StartTLS extended operation handler.  All
    * initialization should be performed in the
@@ -48,7 +47,6 @@
     super();
   }
 
-  /** {@inheritDoc} */
   @Override
   public void initializeExtendedOperationHandler(
                    StartTLSExtendedOperationHandlerCfg config)
@@ -70,7 +68,6 @@
     // happen.
     operation.setResponseOID(OID_START_TLS_REQUEST);
 
-
     // Get the reference to the client connection.  If there is none, then fail.
     ClientConnection clientConnection = operation.getClientConnection();
     if (clientConnection == null)
@@ -80,7 +77,6 @@
       return;
     }
 
-
     // Make sure that the client connection is capable of enabling TLS.  If not,
     // then fail.
     TLSCapableConnection tlsCapableConnection;
@@ -108,14 +104,12 @@
     operation.setResultCode(ResultCode.SUCCESS);
   }
 
-  /** {@inheritDoc} */
   @Override
   public String getExtendedOperationOID()
   {
     return OID_START_TLS_REQUEST;
   }
 
-  /** {@inheritDoc} */
   @Override
   public String getExtendedOperationName()
   {

--
Gitblit v1.10.0