Home > Net >  After Eclipse-Update, refactor-rename doesn't work anymore
After Eclipse-Update, refactor-rename doesn't work anymore

Time:04-12

After Updating to 4.23.0 (2022-03), refactor-rename doesn't work anymore. When I open the refactoring menu, the option "rename" shows up but it doesn't rename the variable in other places. The shortcut doesn't work either. What can I do?

CodePudding user response:

It's actually a bug in Lombok, as detailed here.

Updating to Lombok version 1.18.23 resolved the issue for me. It's currently available here: https://projectlombok.org/download-edge)

  • Related