[Httpunit-commit] SF.net SVN: httpunit:[993] trunk/httpunit/src/com/meterware/httpunit/ WebClient.j
Brought to you by:
russgold
|
From: <wol...@us...> - 2008-09-28 16:50:17
|
Revision: 993
http://httpunit.svn.sourceforge.net/httpunit/?rev=993&view=rev
Author: wolfgang_fahl
Date: 2008-09-28 16:50:11 +0000 (Sun, 28 Sep 2008)
Log Message:
-----------
removed deprecated as asked for in BR 2034206 by Hugh Winkler
Modified Paths:
--------------
trunk/httpunit/src/com/meterware/httpunit/WebClient.java
Modified: trunk/httpunit/src/com/meterware/httpunit/WebClient.java
===================================================================
--- trunk/httpunit/src/com/meterware/httpunit/WebClient.java 2008-09-28 16:45:48 UTC (rev 992)
+++ trunk/httpunit/src/com/meterware/httpunit/WebClient.java 2008-09-28 16:50:11 UTC (rev 993)
@@ -242,7 +242,7 @@
/**
* Sets a username and password for a basic authentication scheme.
- * @deprecated as of 1.7. Use #setAuthentication for more accurate emulation of browser behavior.
+ * Use #setAuthentication for more accurate emulation of browser behavior.
**/
public void setAuthorization( String userName, String password ) {
_fixedAuthorizationString = "Basic " + Base64.encode( userName + ':' + password );
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|