dongjinleekr commented on code in PR #11579:
URL: https://github.com/apache/kafka/pull/11579#discussion_r895019999


##########
gradle/spotbugs-exclude.xml:
##########
@@ -28,8 +28,19 @@ For a detailed description of spotbugs bug categories, see 
https://spotbugs.read
         <!-- Disable warnings about mutable objects and the use of public 
fields.
             EI_EXPOSE_REP: May expose internal representation by returning 
reference to mutable object
             EI_EXPOSE_REP2: May expose internal representation by 
incorporating reference to mutable object
+            MS_EXPOSE_REP: Public static method may expose internal 
representation by returning array
             MS_PKGPROTECT: Field should be package protected -->
-        <Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2,MS_PKGPROTECT"/>
+        <Or>
+            <Bug pattern="EI_EXPOSE_REP"/>
+            <Bug pattern="EI_EXPOSE_REP2"/>
+            <Bug pattern="MS_EXPOSE_REP"/>
+            <Bug pattern="MS_PKGPROTECT"/>
+        </Or>
+    </Match>
+    <Match>
+        <!-- Disable warnings about Random object.
+            DMI_RANDOM_USED_ONLY_ONCE: Random object created and used only 
once -->
+        <Bug pattern="DMI_RANDOM_USED_ONLY_ONCE"/>

Review Comment:
   Yes.
   
   1. Random object created and used only once in new 
`kafka.tools.ConsoleConsumer$ConsumerConfig(String[])`
   2. Random object created and used only once in new 
`kafka.tools.ConsumerPerformance$ConsumerPerfConfig(String[])`



-- 
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

Reply via email to