不显示未使用的 Getters/Setter 的警告
2022-09-01 16:10:43
当一个方法从未被使用时,IntelliJ 会显示一条警告Method xxx() is never used
但是对于POJO,我为每个属性创建Getters/Setters,我不希望IntelliJ警告我未使用的Getters/Setters。
有没有办法自动禁止显示这些警告?
当一个方法从未被使用时,IntelliJ 会显示一条警告Method xxx() is never used
但是对于POJO,我为每个属性创建Getters/Setters,我不希望IntelliJ警告我未使用的Getters/Setters。
有没有办法自动禁止显示这些警告?
我相信你可以用来注释你的方法。//noinspection
您可以导航到| | | 并为您的方法定义一个范围,但我相信您不能仅将其他方法排除在检查之外,才能为getters/setter禁用它。Settings
Inspections
Declaration redundancy
Unused Declarations