Fixed typo in method name (no functional changes)
This commit is contained in:
parent
742bc47a80
commit
d0541123c2
|
@ -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;
|
||||
|
||||
|
@ -171,7 +171,7 @@ abstract class InternalAbstractHttpAsyncClient extends AbstractHttpAsyncClientBa
|
|||
if (log.isDebugEnabled()) {
|
||||
log.debug(exchangeId + ": preparing request execution");
|
||||
}
|
||||
final AsyncExecRuntime execRuntime = crerateAsyncExecRuntime(pushHandlerFactory);
|
||||
final AsyncExecRuntime execRuntime = createAsyncExecRuntime(pushHandlerFactory);
|
||||
|
||||
setupContext(clientContext);
|
||||
|
||||
|
|
|
@ -88,7 +88,7 @@ public final class InternalH2AsyncClient extends InternalAbstractHttpAsyncClient
|
|||
}
|
||||
|
||||
@Override
|
||||
AsyncExecRuntime crerateAsyncExecRuntime(final HandlerFactory<AsyncPushConsumer> pushHandlerFactory) {
|
||||
AsyncExecRuntime createAsyncExecRuntime(final HandlerFactory<AsyncPushConsumer> pushHandlerFactory) {
|
||||
return new InternalH2AsyncExecRuntime(log, connPool, pushHandlerFactory);
|
||||
}
|
||||
|
||||
|
|
|
@ -95,7 +95,7 @@ public final class InternalHttpAsyncClient extends InternalAbstractHttpAsyncClie
|
|||
}
|
||||
|
||||
@Override
|
||||
AsyncExecRuntime crerateAsyncExecRuntime(final HandlerFactory<AsyncPushConsumer> pushHandlerFactory) {
|
||||
AsyncExecRuntime createAsyncExecRuntime(final HandlerFactory<AsyncPushConsumer> pushHandlerFactory) {
|
||||
return new InternalHttpAsyncExecRuntime(log, connmgr, getConnectionInitiator(), pushHandlerFactory, versionPolicy);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue