DATAGEODE-220 - Correct misspelling in the LazyResolvingComposableContinousQueryListenerContainerConfigurer class name.
This commit is contained in:
@@ -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() {
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user