lucasbru commented on code in PR #18963: URL: https://github.com/apache/kafka/pull/18963#discussion_r1970569977
########## clients/src/test/java/org/apache/kafka/clients/consumer/internals/FetcherTest.java: ########## @@ -2881,7 +2881,7 @@ private void verifySessionPartitions() { field.setAccessible(true); LinkedHashMap<?, ?> sessionPartitions = (LinkedHashMap<?, ?>) field.get(handler); - for (Map.Entry<?, ?> entry : sessionPartitions.entrySet()) { + for (@SuppressWarnings("UnusedLocalVariable") Map.Entry<?, ?> ignored : sessionPartitions.entrySet()) { Review Comment: Done, also in some other place -- 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