redhat-developer / redhat-developer/vscode-java
Organize Imports should automatically add required modules in module-info
未关闭
@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
- create a file
App.javaas below inside a modular project - 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;
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
评估
这个 Issue 还没有评估数据。