Author: elecharny
Date: Sat Jul 23 15:48:56 2005
New Revision: 224566
URL: http://svn.apache.org/viewcvs?rev=224566&view=rev
Log:
The simple authentication now has a toString method, so use it.
Modified:
directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/BindRequest.java
Modified: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/BindRequest.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/BindRequest.java?rev=224566&r1=224565&r2=224566&view=diff
==============================================================================
--- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/BindRequest.java
(original)
+++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/BindRequest.java
Sat Jul 23 15:48:56 2005
@@ -158,7 +158,7 @@
if ( authentication instanceof SimpleAuthentication )
{
sb.append( " Simple authentication : '" )
- .append( ( ( SimpleAuthentication ) authentication ).getSimple().toString()
).append(
+ .append( ( ( SimpleAuthentication ) authentication ).toString() ).append(
"'\n" );
}
else
|