Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ public class ReactivePulsarListenerAnnotationBeanPostProcessor<V> extends Abstra

private final Set<Class<?>> nonAnnotatedClasses = Collections.newSetFromMap(new ConcurrentHashMap<>(64));

private final ListenerScope listenerScope = new ListenerScope();

private final AtomicInteger counter = new AtomicInteger();

private final List<MethodReactivePulsarListenerEndpoint<?>> processedEndpoints = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ public class PulsarListenerAnnotationBeanPostProcessor<V> extends AbstractPulsar

private final Set<Class<?>> nonAnnotatedClasses = Collections.newSetFromMap(new ConcurrentHashMap<>(64));

private final ListenerScope listenerScope = new ListenerScope();

private final AtomicInteger counter = new AtomicInteger();

private final List<MethodPulsarListenerEndpoint<?>> processedEndpoints = new ArrayList<>();
Expand Down