You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2005/10/30 20:54:52 UTC

svn commit: r329611 - /directory/shared/ldap/branches/shared-ldap-utf8/apache2-provider/src/java/main/org/apache/asn1new/ldap/TwixProvider.java

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 );
     }