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 21:01:18 UTC

svn commit: r329621 - /directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/MessageDecoder.java

Author: elecharny
Date: Sun Oct 30 12:01:14 2005
New Revision: 329621

URL: http://svn.apache.org/viewcvs?rev=329621&view=rev
Log:
Calle the getDecoder method with the env Hashtable

Modified:
    directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/MessageDecoder.java

Modified: directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/MessageDecoder.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/MessageDecoder.java?rev=329621&r1=329620&r2=329621&view=diff
==============================================================================
--- directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/MessageDecoder.java (original)
+++ directory/shared/ldap/branches/shared-ldap-utf8/common/src/java/org/apache/ldap/common/message/MessageDecoder.java Sun Oct 30 12:01:14 2005
@@ -74,7 +74,7 @@
     {
         this.env = ( Hashtable ) env.clone();
         this.provider = Provider.getProvider( this.env );
-        this.decoder = this.provider.getDecoder();
+        this.decoder = this.provider.getDecoder( this.env );
         this.transformer = this.provider.getTransformer();
         this.decoder.setCallback( new DecoderCallback()
         {