philipnee commented on code in PR #13490: URL: https://github.com/apache/kafka/pull/13490#discussion_r1159047408
########## clients/src/main/java/org/apache/kafka/clients/consumer/internals/PrototypeAsyncConsumer.java: ########## @@ -130,20 +136,20 @@ public PrototypeAsyncConsumer(final ConsumerConfig config, this.subscriptions = new SubscriptionState(logContext, offsetResetStrategy); this.metrics = buildMetrics(config, time, clientId); List<ConsumerInterceptor<K, V>> interceptorList = (List) config.getConfiguredInstances( - ConsumerConfig.INTERCEPTOR_CLASSES_CONFIG, - ConsumerInterceptor.class, - Collections.singletonMap(ConsumerConfig.CLIENT_ID_CONFIG, clientId)); + ConsumerConfig.INTERCEPTOR_CLASSES_CONFIG, + ConsumerInterceptor.class, + Collections.singletonMap(ConsumerConfig.CLIENT_ID_CONFIG, clientId)); ClusterResourceListeners clusterResourceListeners = configureClusterResourceListeners(keyDeserializer, - valueDeserializer, metrics.reporters(), interceptorList); + valueDeserializer, metrics.reporters(), interceptorList); this.eventHandler = new DefaultEventHandler( - config, - groupRebalanceConfig, - logContext, - subscriptions, Review Comment: I changed my indentation to 4... -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org