wernerdv commented on code in PR #19446: URL: https://github.com/apache/kafka/pull/19446#discussion_r2065760741
########## streams/src/test/java/org/apache/kafka/streams/tests/StreamsNamedRepartitionTest.java: ########## @@ -55,7 +55,7 @@ public static void main(final String[] args) throws Exception { final String inputTopic = (String) (Objects.requireNonNull(streamsProperties.remove("input.topic"))); final String aggregationTopic = (String) (Objects.requireNonNull(streamsProperties.remove("aggregation.topic"))); - final boolean addOperators = Boolean.valueOf(Objects.requireNonNull((String) streamsProperties.remove("add.operations"))); + final boolean addOperators = Boolean.parseBoolean(Objects.requireNonNull((String) streamsProperties.remove("add.operations"))); Review Comment: It's for the IDEA warning fix: `Redundant boxing, 'Boolean.parseBoolean()' call can be used instead `. `valueOf` also uses `parseBoolean`. -- 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