如何关闭 Eclipse 警告“导入从未使用”?
我的项目中有很多这样的警告,我想将其关闭。我对删除这些导入不感兴趣,所以请不要告诉我该怎么做。
我正在使用 eclipse 3.4.2。
I have a lot of this warnings in project and I would like to turn it off. I'm not interested in removing those imports, so please don't tell me how to do it.
I'm using eclipse 3.4.2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
要更改整个工作区:
窗口 >首选项>爪哇>编译器>错误/警告>未使用的导入>忽略。
要覆盖单个项目的工作区设置:
项目 >属性> Java编译器>错误/警告>未使用的导入>忽略。
To change for the entire workspace:
Window > Preferences > Java > Compiler > Errors/Warnings > Unused Import > Ignore.
To override workspace settings for a single project:
Project > Properties > Java Compiler > Errors/Warnings > Unused Import > Ignore.
@SuppressWarnings("unusedImports") 仅禁用未使用的导入,而不是禁用所有未使用的项目
@SuppressWarnings("unusedImports") disables just unused imports as opposed to al unused items
顺便说一句,一个非常好的快捷方式是 ctrl+shift+o 可以自动清除这些导入。
也可以这样设置,以便在每个保存中自动组织导入:
如果您希望将这些导入留在那里,也可以。但这是对其他人来说的:)
另外我不确定 3.4 版本。
Btw, one very good shortcut is ctrl+shift+o that cleans those imports automatically.
Also it is possible to put so that in every save imports are automatically organised from:
If you prefer to leave those imports there, it is ok. But that is to anyone else :)
Also I am not sure about 3.4 version.
如果您有一个文件 org.eclipse.jdt.core.prefs,那么您可以添加 org.eclipse.jdt.core.compiler.problem.unusedImport=ignore。
使用 vscode 时,应该可以从项目根目录的文件夹
.settings
中看到该文件。If you have a file
org.eclipse.jdt.core.prefs
then you can addorg.eclipse.jdt.core.compiler.problem.unusedImport=ignore
.When using vscode this file should be seen from the project root in a folder
.settings
.