Search code examples
javaintellij-idea

Don't show warning for unused Getters/Setters


When a method is never used, IntelliJ shows a warning Method xxx() is never used

But for POJOs, I create Getters/Setters for every attributes and I do not want IntelliJ to warn me for unused Getters/Setters.

Is there a way to automatically suppress those warnings?


Solution

  • As of IDEA 2016.3 there is a setting to do this. Using IntelliJ on a Mac, it is under Settings | Editor | Inspections | Java | Declaration redundancy | Unused declaration | Methods | Getters/setters

    Disable unused getter/setter method warnings