不支持的@SuppressWarnings(“PMD.DoNotCallSystemExit”)

时间:2011-02-16 14:22:59

标签: eclipse suppress-warnings pmd

我需要在应用程序中使用System.exit(0)。 Eclipse安装了PMD插件并抱怨这行代码。添加@SuppressWarnings ("PMD.DoNotCallSystemExit")会删除该警告,但现在我收到一条警告,指出此SuppressWarnings不受支持,尽管它有效。

有没有办法解决这个问题?

1 个答案:

答案 0 :(得分:74)

要让Eclipse不标记@SuppressWarnings("PMD")注释,请在菜单标题下查看Java - >编译器 - >错误/警告 - >注释 - > “@SuppressWarnings”中未处理的令牌并将其设置为忽略。

PMD页面上。