不显示未使用的 Getters/Setter 的警告

2022-09-01 16:10:43

当一个方法从未被使用时,IntelliJ 会显示一条警告Method xxx() is never used

但是对于POJO,我为每个属性创建Getters/Setters,我不希望IntelliJ警告我未使用的Getters/Setters。

有没有办法自动禁止显示这些警告?


答案 1

自IDEA 2016.3以来,现在有一个设置可以做到这一点。在Mac上使用IntelliJ,它处于| | | | | | |SettingsEditorInspectionsJavaDeclaration redundancyUnused DeclarationsMethodsGetters/setters

Disable unused getter/setter method warnings


答案 2

我相信你可以用来注释你的方法。//noinspection

您可以导航到| | | 并为您的方法定义一个范围,但我相信您不能仅将其他方法排除在检查之外,才能为getters/setter禁用它。SettingsInspectionsDeclaration redundancyUnused Declarations


推荐