Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 40378 invoked from network); 30 Oct 2005 19:55:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 30 Oct 2005 19:55:14 -0000 Received: (qmail 44120 invoked by uid 500); 30 Oct 2005 19:55:14 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 44070 invoked by uid 500); 30 Oct 2005 19:55:14 -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 44059 invoked by uid 99); 30 Oct 2005 19:55:14 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Oct 2005 11:55:14 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 30 Oct 2005 11:55:10 -0800 Received: (qmail 40230 invoked by uid 65534); 30 Oct 2005 19:54:53 -0000 Message-ID: <20051030195453.40229.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r329611 - /directory/shared/ldap/branches/shared-ldap-utf8/apache2-provider/src/java/main/org/apache/asn1new/ldap/TwixProvider.java Date: Sun, 30 Oct 2005 19:54:52 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: elecharny Date: Sun Oct 30 11:54:47 2005 New Revision: 329611 URL: http://svn.apache.org/viewcvs?rev=329611&view=rev Log: Transmitting the binary HashSet to the constructor. Modified: directory/shared/ldap/branches/shared-ldap-utf8/apache2-provider/src/java/main/org/apache/asn1new/ldap/TwixProvider.java Modified: directory/shared/ldap/branches/shared-ldap-utf8/apache2-provider/src/java/main/org/apache/asn1new/ldap/TwixProvider.java URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/shared-ldap-utf8/apache2-provider/src/java/main/org/apache/asn1new/ldap/TwixProvider.java?rev=329611&r1=329610&r2=329611&view=diff ============================================================================== --- directory/shared/ldap/branches/shared-ldap-utf8/apache2-provider/src/java/main/org/apache/asn1new/ldap/TwixProvider.java (original) +++ directory/shared/ldap/branches/shared-ldap-utf8/apache2-provider/src/java/main/org/apache/asn1new/ldap/TwixProvider.java Sun Oct 30 11:54:47 2005 @@ -17,6 +17,8 @@ package org.apache.asn1new.ldap; +import java.util.Hashtable; + import org.apache.asn1new.ldap.TwixDecoder; import org.apache.ldap.common.message.spi.Provider; import org.apache.ldap.common.message.spi.ProviderDecoder; @@ -83,7 +85,7 @@ * @throws org.apache.ldap.common.message.spi.ProviderException * if the provider or its decoder cannot be found */ - public ProviderDecoder getDecoder() throws ProviderException + public ProviderDecoder getDecoder( Hashtable env ) throws ProviderException { return new TwixDecoder( this ); }