mbien commented on pull request #3221:
URL: https://github.com/apache/netbeans/pull/3221#issuecomment-940359430


   you are right there is a missing rule for
   ```
   int five = Integer.valueOf("5");
   =>
   int five = Integer.parseInt("5");
   ```
   
   there only a rule which triggers on
   ```
   int five = Integer.valueOf("5").intValue()
   =>
   int five = Integer.parseInt("5");
   ```
   
   so if the autoboxing refactoring was applied first, the perf refactoring 
won't trigger. Probably something I could fix.


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



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to