* Fix javadoc typo.
* Use java array declarations instead of "c" way.
This commit is contained in:
parent
bc7aae743a
commit
012429391c
|
@ -41,7 +41,7 @@ import org.apache.hc.core5.annotation.ThreadingBehavior;
|
|||
*
|
||||
* <p>
|
||||
* This comparator assumes that Path attributes of two cookies
|
||||
* path-match a commmon request-URI. Otherwise, the result of the
|
||||
* path-match a common request-URI. Otherwise, the result of the
|
||||
* comparison is undefined.
|
||||
* </p>
|
||||
*
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.apache.hc.core5.http.protocol.HttpContext;
|
|||
|
||||
/**
|
||||
* Extension of core {@link DefaultConnectionReuseStrategy} that treats
|
||||
* CONNECT method exchnages involved in proxy tunnelling as a special case.
|
||||
* CONNECT method exchanges involved in proxy tunnelling as a special case.
|
||||
*
|
||||
* @since 5.2
|
||||
*/
|
||||
|
|
|
@ -260,7 +260,7 @@ public class HttpAsyncClientBuilder {
|
|||
/**
|
||||
* Sets HTTP protocol version policy.
|
||||
*
|
||||
* @deprecated Use {@link TlsConfig} and connection nanager methods
|
||||
* @deprecated Use {@link TlsConfig} and connection manager methods
|
||||
*/
|
||||
@Deprecated
|
||||
public final HttpAsyncClientBuilder setVersionPolicy(final HttpVersionPolicy versionPolicy) {
|
||||
|
|
|
@ -917,7 +917,7 @@ final class NTLMEngineImpl implements NTLMEngine {
|
|||
return sig;
|
||||
}
|
||||
|
||||
private boolean validateSignature( final byte[] signature, final byte message[] )
|
||||
private boolean validateSignature( final byte[] signature, final byte[] message )
|
||||
{
|
||||
final byte[] computedSignature = computeSignature( message );
|
||||
// log.info( "SSSSS validateSignature("+seqNumber+")\n"
|
||||
|
|
Loading…
Reference in New Issue