From commits-return-30466-apmail-directory-commits-archive=directory.apache.org@directory.apache.org Wed Feb 02 00:38:25 2011 Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 33794 invoked from network); 2 Feb 2011 00:38:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Feb 2011 00:38:25 -0000 Received: (qmail 4164 invoked by uid 500); 2 Feb 2011 00:38:25 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 4103 invoked by uid 500); 2 Feb 2011 00:38:24 -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 4095 invoked by uid 99); 2 Feb 2011 00:38:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Feb 2011 00:38:24 +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; Wed, 02 Feb 2011 00:38:24 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1831E2388A3C; Wed, 2 Feb 2011 00:38:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1066286 - /directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/BasicControl.java Date: Wed, 02 Feb 2011 00:38:04 -0000 To: commits@directory.apache.org From: akarasulu@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110202003804.1831E2388A3C@eris.apache.org> Author: akarasulu Date: Wed Feb 2 00:38:03 2011 New Revision: 1066286 URL: http://svn.apache.org/viewvc?rev=1066286&view=rev Log: removing unnecessary import dep on codec interface Modified: directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/BasicControl.java Modified: directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/BasicControl.java URL: http://svn.apache.org/viewvc/directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/BasicControl.java?rev=1066286&r1=1066285&r2=1066286&view=diff ============================================================================== --- directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/BasicControl.java (original) +++ directory/shared/branches/m1/ldap/src/main/java/org/apache/directory/shared/ldap/model/message/controls/BasicControl.java Wed Feb 2 00:38:03 2011 @@ -20,15 +20,14 @@ package org.apache.directory.shared.ldap.model.message.controls; -import org.apache.directory.shared.ldap.codec.ILdapCodecService; import org.apache.directory.shared.ldap.model.message.Control; /** * A simple implementation of the {@link Control} interface with storage for - * the OID and the criticality properties. When a {@link ILdapCodecService} - * implementation does not have specific control factories available, hence - * the control is unrecognized, it creates instances of this control for them. + * the OID and the criticality properties. When the codec factory service + * does not have specific control factories available, hence the control is + * unrecognized, it creates instances of this control for them. * * @author Apache Directory Project */