Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 81411 invoked from network); 6 Feb 2011 20:42:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 6 Feb 2011 20:42:54 -0000 Received: (qmail 33279 invoked by uid 500); 6 Feb 2011 20:42:54 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 33231 invoked by uid 500); 6 Feb 2011 20:42:54 -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 33224 invoked by uid 99); 6 Feb 2011 20:42:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 06 Feb 2011 20:42:54 +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; Sun, 06 Feb 2011 20:42:52 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9FC9023889E1; Sun, 6 Feb 2011 20:42:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1067754 - /directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/OpaqueControl.java Date: Sun, 06 Feb 2011 20:42:31 -0000 To: commits@directory.apache.org From: akarasulu@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110206204231.9FC9023889E1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: akarasulu Date: Sun Feb 6 20:42:31 2011 New Revision: 1067754 URL: http://svn.apache.org/viewvc?rev=1067754&view=rev Log: removed import to codec pulling in from documentation Modified: directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/OpaqueControl.java Modified: directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/OpaqueControl.java URL: http://svn.apache.org/viewvc/directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/OpaqueControl.java?rev=1067754&r1=1067753&r2=1067754&view=diff ============================================================================== --- directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/OpaqueControl.java (original) +++ directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/OpaqueControl.java Sun Feb 6 20:42:31 2011 @@ -20,7 +20,6 @@ package org.apache.directory.shared.ldap.model.message.controls; -import org.apache.directory.shared.ldap.codec.api.ControlFactory; import org.apache.directory.shared.ldap.model.message.Control; import org.apache.directory.shared.util.Strings; @@ -28,7 +27,7 @@ import org.apache.directory.shared.util. /** * A final {@link Control} implementation intended specifically for handling * controls who's values cannot be encoded or decoded by the codec service. - * This situation results when no {@link ControlFactory} is found to be + * This situation results when no Control factory is found to be * registered for this control's OID. Hence additional opaque value handling * methods are included to manage the opaque control value. *