jolshan commented on a change in pull request #9454: URL: https://github.com/apache/kafka/pull/9454#discussion_r508631712
########## File path: clients/src/main/java/org/apache/kafka/common/protocol/types/Type.java ########## @@ -331,14 +331,14 @@ public String documentation() { public static final DocumentedType UUID = new DocumentedType() { @Override public void write(ByteBuffer buffer, Object o) { - final java.util.UUID uuid = (java.util.UUID) o; + final org.apache.kafka.common.UUID uuid = (org.apache.kafka.common.UUID) o; Review comment: My best guess is that since the type is also called UUID, originally the qualification was to differentiate. But it doesn't seem to be needed, so I'll update this to just say UUID. ---------------------------------------------------------------- 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