Return-Path: X-Original-To: apmail-directory-commits-archive@www.apache.org Delivered-To: apmail-directory-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5C4849B98 for ; Tue, 24 Jan 2012 18:21:50 +0000 (UTC) Received: (qmail 68675 invoked by uid 500); 24 Jan 2012 18:21:50 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 68602 invoked by uid 500); 24 Jan 2012 18:21:49 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 68595 invoked by uid 99); 24 Jan 2012 18:21:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jan 2012 18:21:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jan 2012 18:21:48 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B4D342388A3F for ; Tue, 24 Jan 2012 18:21:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1235392 - /directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java Date: Tue, 24 Jan 2012 18:21:28 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120124182128.B4D342388A3F@eris.apache.org> Author: elecharny Date: Tue Jan 24 18:21:28 2012 New Revision: 1235392 URL: http://svn.apache.org/viewvc?rev=1235392&view=rev Log: Some Javadoc fix, removed a @Override annotation Modified: directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java Modified: directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java?rev=1235392&r1=1235391&r2=1235392&view=diff ============================================================================== --- directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java (original) +++ directory/shared/trunk/ldap/extras/codec/src/main/java/org/apache/directory/shared/ldap/extras/extended/ads_impl/certGeneration/CertGenerationObject.java Tue Jan 24 18:21:28 2012 @@ -6,16 +6,16 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations - * under the License. - * + * under the License. + * */ package org.apache.directory.shared.ldap.extras.extended.ads_impl.certGeneration; @@ -34,7 +34,7 @@ import org.apache.directory.shared.util. * * An extended operation for generating a public key Certificate. *
- *   CertGenerateObject ::= SEQUENCE 
+ *   CertGenerateObject ::= SEQUENCE
  *   {
  *      targetDN        IA5String,
  *      issuerDN        IA5String,
@@ -59,7 +59,9 @@ public class CertGenerationObject extend
     private int requestLength = 0;
 
 
-    @Override
+    /**
+     * {@inheritDoc}
+     */
     public int computeLength()
     {
         int len = Strings.getBytesUtf8( request.getTargetDN() ).length;