如何在eclipse 2023-03中删除每行显示警告?

1aaf6o9v  于 2023-04-11  发布在  Eclipse
关注(0)|答案(1)|浏览(137)

这个问题是来自超级用户的migrated,因为它可以在Stack Overflow. Migrated上回答。
突然,我的Eclipse2023-03开始显示以下内容。

现有:

370 int to = max_record_pick_up;
371 List = new ArrayList();

部分设置更改后:

370 int to = max_record_pick_up;

Some warning message started showing here for the next line...

371 List = new ArrayList();
我不知道这两行之间的警告消息是如何被启用的,可能是一些配置错误地启用了。
谁能帮助我停止在两行之间显示此警告消息?

nvbavucw

nvbavucw1#

我自己得到了答案。
前往窗口〉首选项
然后搜索Code Mining
然后选择文本编辑器,并选择None作为Show code minings for problem annotations。

相关问题