Fixed javadoc warnings

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1195170 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2011-10-30 14:32:39 +00:00
parent 00a3cfebc2
commit d7d7bb2bde
4 changed files with 7 additions and 6 deletions

View File

@ -202,7 +202,7 @@ public void setCredentials(final Credentials credentials) {
*
* @return actual authentication scope if available, <code>null</code otherwise
*
* @deprecated use {@link #isChallenged()}
* @deprecated do not use.
*/
@Deprecated
public AuthScope getAuthScope() {
@ -214,7 +214,7 @@ public AuthScope getAuthScope() {
*
* @param authScope Authentication scope
*
* @deprecated use {@link #setChallenged()} or {@link #setUnchallenged()}.
* @deprecated do not use.
*/
@Deprecated
public void setAuthScope(final AuthScope authScope) {

View File

@ -55,7 +55,7 @@ public interface ConnectionBackoffStrategy {
* signal. Implementations MUST restrict themselves to examining
* the response header and MUST NOT consume any of the response
* body, if any.
* @param t the <code>HttpResponse</code> that was received
* @param resp the <code>HttpResponse</code> that was received
* @return <code>true</code> if a backoff signal should be
* given
*/

View File

@ -65,7 +65,7 @@ public class AIMDBackoffManager implements BackoffManager {
/**
* Creates an <code>AIMDBackoffManager</code> to manage
* per-host connection pool sizes represented by the
* given {@link MockConnPoolControl}.
* given {@link ConnPoolControl}.
* @param connPerRoute per-host routing maximums to
* be managed
*/

View File

@ -269,8 +269,9 @@ protected void prepareSocket(
* @return array of IP addresses
* @exception UnknownHostException if no IP address for the host could be determined.
*
* @see {@link DnsResolver}
* @see {@link SystemDefaultDnsResolver}
* @see DnsResolver
* @see SystemDefaultDnsResolver
*
* @since 4.1
*/
protected InetAddress[] resolveHostname(final String host) throws UnknownHostException {