kowshik opened a new pull request #10756: URL: https://github.com/apache/kafka/pull/10756
Have done a small improvement in this PR by flipping logical NOT for readability. Basically, the following code: ``` if (A) { if (B) { } else { } } else if (B) { } ``` is more readable than: ``` if (A) { if (!B) { } else { } } else if (B) { } ``` **Tests:** Relying on existing tests. -- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org