Fix Javadoc Typo (#10603)

Motivation:

Following Javadoc standard

Modification:

Change from `@param KeyManager` to `@param keyManager`

Result:

The `@param` matches the actual parameter variable name
This commit is contained in:
Yosfik Alqadri 2020-09-24 20:27:44 +07:00 committed by GitHub
parent 69f9a94f59
commit a4276e8dff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,7 +165,7 @@ public final class SslContextBuilder {
/**
* Creates a builder for new server-side {@link SslContext} with {@link KeyManager}.
*
* @param KeyManager non-{@code null} KeyManager for server's private key
* @param keyManager non-{@code null} KeyManager for server's private key
*/
public static SslContextBuilder forServer(KeyManager keyManager) {
return new SslContextBuilder(true).keyManager(keyManager);