[ https://issues.apache.org/jira/browse/KAFKA-17761?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17888339#comment-17888339 ]
xuanzhang gong commented on KAFKA-17761: ---------------------------------------- [~chia7712] I understand, thank you > Omit generics using type inference > ---------------------------------- > > Key: KAFKA-17761 > URL: https://issues.apache.org/jira/browse/KAFKA-17761 > Project: Kafka > Issue Type: Sub-task > Reporter: xuanzhang gong > Assignee: xuanzhang gong > Priority: Major > > If the compiler can do type inference, generics should not be written in > diamond blocks. > For example: > List<String> list = new ArrayList<String>(); > we should remove "String". > Correct writing is : > List<String> list = new ArrayList<>(); > > BTW:There are about 1500 such problems in kafka -- This message was sent by Atlassian Jira (v8.20.10#820010)