不必要的@SuppressWarnings(“未使用”)
2022-08-31 15:40:10
我收到一个编译器警告,用于代码的 eclipse 中的注释:@SuppressWarnings
@Override
public boolean doSomething(@SuppressWarnings("unused") String whatever) throws AnException {
throw new AnException("I'm still in bed and can't do anything until I've had a shower!");
}
它看起来像“未使用”一词下的黄色波浪线,在鼠标悬停时,我得到工具提示 。Unnecessary @SuppressWarnings("unused")
我认为另一个开发人员被eclipse提示放入这些注释,并且基本上被提示将它们取出。如何配置 eclipse 以提示我放入注释,而不是抱怨它?@SuppressWarnings
如果有人想在这里评论最佳实践,那么这也是非常受欢迎的。