Fixed typo in method name (no functional changes)

This commit is contained in:
Oleg Kalnichevski 2019-12-04 14:31:46 +01:00
parent 742bc47a80
commit d0541123c2
3 changed files with 4 additions and 4 deletions

View File

@ -136,7 +136,7 @@ abstract class InternalAbstractHttpAsyncClient extends AbstractHttpAsyncClientBa
} }
} }
abstract AsyncExecRuntime crerateAsyncExecRuntime(HandlerFactory<AsyncPushConsumer> pushHandlerFactory); abstract AsyncExecRuntime createAsyncExecRuntime(HandlerFactory<AsyncPushConsumer> pushHandlerFactory);
abstract HttpRoute determineRoute(HttpRequest request, HttpClientContext clientContext) throws HttpException; abstract HttpRoute determineRoute(HttpRequest request, HttpClientContext clientContext) throws HttpException;
@ -171,7 +171,7 @@ abstract class InternalAbstractHttpAsyncClient extends AbstractHttpAsyncClientBa
if (log.isDebugEnabled()) { if (log.isDebugEnabled()) {
log.debug(exchangeId + ": preparing request execution"); log.debug(exchangeId + ": preparing request execution");
} }
final AsyncExecRuntime execRuntime = crerateAsyncExecRuntime(pushHandlerFactory); final AsyncExecRuntime execRuntime = createAsyncExecRuntime(pushHandlerFactory);
setupContext(clientContext); setupContext(clientContext);

View File

@ -88,7 +88,7 @@ public final class InternalH2AsyncClient extends InternalAbstractHttpAsyncClient
} }
@Override @Override
AsyncExecRuntime crerateAsyncExecRuntime(final HandlerFactory<AsyncPushConsumer> pushHandlerFactory) { AsyncExecRuntime createAsyncExecRuntime(final HandlerFactory<AsyncPushConsumer> pushHandlerFactory) {
return new InternalH2AsyncExecRuntime(log, connPool, pushHandlerFactory); return new InternalH2AsyncExecRuntime(log, connPool, pushHandlerFactory);
} }

View File

@ -95,7 +95,7 @@ public final class InternalHttpAsyncClient extends InternalAbstractHttpAsyncClie
} }
@Override @Override
AsyncExecRuntime crerateAsyncExecRuntime(final HandlerFactory<AsyncPushConsumer> pushHandlerFactory) { AsyncExecRuntime createAsyncExecRuntime(final HandlerFactory<AsyncPushConsumer> pushHandlerFactory) {
return new InternalHttpAsyncExecRuntime(log, connmgr, getConnectionInitiator(), pushHandlerFactory, versionPolicy); return new InternalHttpAsyncExecRuntime(log, connmgr, getConnectionInitiator(), pushHandlerFactory, versionPolicy);
} }