see-quick commented on code in PR #22883: URL: https://github.com/apache/kafka/pull/22883#discussion_r3620825130
########## clients/src/main/java/org/apache/kafka/server/authorizer/CidrUtils.java: ########## @@ -15,11 +15,14 @@ * limitations under the License. */ -package org.apache.kafka.metadata.authorizer; +package org.apache.kafka.server.authorizer; + +import org.apache.kafka.common.annotation.InterfaceAudience; import org.apache.commons.net.util.SubnetUtils; import org.apache.commons.net.util.SubnetUtils6; [email protected] Review Comment: There was build issues when I marked it to `@InterfaceAudience.Private` or not marking class at all, but thinking about this again I think we can move it to `org.apache.kafka.server.authorizer.internals` package to prevent those build issues and also not marking it as public API. WDYT? -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
