DATAGEODE-220 - Correct misspelling in the LazyResolvingComposableContinousQueryListenerContainerConfigurer class name.

This commit is contained in:
John Blum
2019-08-15 01:14:00 -07:00
parent 37b79f16ce
commit 55ac69bd7b
2 changed files with 5 additions and 5 deletions

View File

@@ -215,7 +215,7 @@ public class ContinuousQueryConfiguration extends AbstractAnnotationConfigSuppor
return Optional.ofNullable(this.configurers)
.orElseGet(() ->
Collections.singletonList(LazyResovlingComposableContinuousQueryListenerContainerConfigurer.create(getBeanFactory())));
Collections.singletonList(LazyResolvingComposableContinuousQueryListenerContainerConfigurer.create(getBeanFactory())));
}
protected Optional<ErrorHandler> resolveErrorHandler() {

View File

@@ -30,16 +30,16 @@ import org.springframework.lang.Nullable;
* @see org.springframework.data.gemfire.listener.ContinuousQueryListenerContainer
* @since 2.2.0
*/
public class LazyResovlingComposableContinuousQueryListenerContainerConfigurer
public class LazyResolvingComposableContinuousQueryListenerContainerConfigurer
extends AbstractLazyResolvingComposableConfigurer<ContinuousQueryListenerContainer, ContinuousQueryListenerContainerConfigurer>
implements ContinuousQueryListenerContainerConfigurer {
public static LazyResovlingComposableContinuousQueryListenerContainerConfigurer create() {
public static LazyResolvingComposableContinuousQueryListenerContainerConfigurer create() {
return create(null);
}
public static LazyResovlingComposableContinuousQueryListenerContainerConfigurer create(@Nullable BeanFactory beanFactory) {
return new LazyResovlingComposableContinuousQueryListenerContainerConfigurer().with(beanFactory);
public static LazyResolvingComposableContinuousQueryListenerContainerConfigurer create(@Nullable BeanFactory beanFactory) {
return new LazyResolvingComposableContinuousQueryListenerContainerConfigurer().with(beanFactory);
}
@Override