* Fix javadoc typo.

* Use java array declarations instead of "c" way.
This commit is contained in:
Arturo Bernal 2021-10-17 09:40:12 +02:00 committed by Oleg Kalnichevski
parent bc7aae743a
commit 012429391c
4 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ import org.apache.hc.core5.annotation.ThreadingBehavior;
* *
* <p> * <p>
* This comparator assumes that Path attributes of two cookies * 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. * comparison is undefined.
* </p> * </p>
* *

View File

@ -37,7 +37,7 @@ import org.apache.hc.core5.http.protocol.HttpContext;
/** /**
* Extension of core {@link DefaultConnectionReuseStrategy} that treats * 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 * @since 5.2
*/ */

View File

@ -260,7 +260,7 @@ public class HttpAsyncClientBuilder {
/** /**
* Sets HTTP protocol version policy. * Sets HTTP protocol version policy.
* *
* @deprecated Use {@link TlsConfig} and connection nanager methods * @deprecated Use {@link TlsConfig} and connection manager methods
*/ */
@Deprecated @Deprecated
public final HttpAsyncClientBuilder setVersionPolicy(final HttpVersionPolicy versionPolicy) { public final HttpAsyncClientBuilder setVersionPolicy(final HttpVersionPolicy versionPolicy) {

View File

@ -917,7 +917,7 @@ final class NTLMEngineImpl implements NTLMEngine {
return sig; 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 ); final byte[] computedSignature = computeSignature( message );
// log.info( "SSSSS validateSignature("+seqNumber+")\n" // log.info( "SSSSS validateSignature("+seqNumber+")\n"