Apache9 commented on PR #6901:
URL: https://github.com/apache/hbase/pull/6901#issuecomment-2799555841

   Please use this form
   ```
       blackhole.consume(x -> {
         blackhole.consume(x);
       });
   ```
   
   Not
   ```
           IntConsumer newClosure = x -> {
             blackhole.consume(x);
           };
           blackhole.consume(newClosure);
   ```
   
   If compile can not pass, use casting instead of storing it to a local 
variable.


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

Reply via email to