redhat-developer / redhat-developer/vscode-java

Organize Imports should automatically add required modules in module-info

未关闭
#1,388 0 条评论 0 个 reaction 已指派 1 人 在 GitHub 查看

@snjeza 已经在做这个了。

开始于 2020年4月13日。

code action
主要语言
TypeScript
星标
2.3k
派生
546
平均合并
20 小时 1 分钟
30 天内合并 PR
11

描述

When I do Organize Imports, I'd like for the module-info.java file to be updated automatically as well.

Environment
  • Operating System: Windows 10
  • JDK version: 14
  • Visual Studio Code version: 1.44.0
  • Java extension version: 0.59.1
Steps To Reproduce
  1. create a file App.java as below inside a modular project
  2. do Organize Imports
class App {
    void run() {
        HttpClient client;
    }
}
Current Result

After importing java.net.http.HttpClient, the module-info.java file is unchanged.

Expected Result

The module-info.java file is automatically updated with:

requires java.net.http;

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。