Ambiguous method call using Project Lombok with IntelliJ

328 Views Asked by At

I am facing the same issue with this question: Ambiguous method call using Project Lombok

However, I do not have Hrisey installed.

Show far I have tried the following:

  • Installed Lombok plugin on IntelliJ IDEA
  • Enabled Lombok plugin for this project
  • Enabled annotation processing under Compiler settings
  • Updated IntelliJ to July 11th version.

Finally, restarted, uninstalled the plugin, tried everything again, and restarted again.

The issue still persists.

Edit:Upgraded to latest (20th Sept) version and still facing the issue.

2

There are 2 best solutions below

0
On

This sounds like a bug. You could report it in the IntelliJ IDEA Lombok Plugin

0
On

ran into the same issue... turns out I had both @Data and @Value annotated classes (you really need only one). Removed @Value and the warning went away.