redhat-developer / redhat-developer/vscode-java
source.generate.finalModifiers should not add final modifiers to the fields
未关闭
还没有人认领这个 Issue。
- 主要语言
- TypeScript
- 星标
- 2.3k
- 派生
- 546
- 平均合并
- 20 小时 1 分钟
- 30 天内合并 PR
- 11
描述
If I have a field line that:
class User {
@Parameter(names = { "--age", "-a" }, required = true, description = "User age")
public int age = 1;
}
following option:
"[java]": {
"editor.codeActionsOnSave": {
"source.generate.finalModifiers": true
}
}
add final modifier to it:
class User {
@Parameter(names = { "--age", "-a" }, required = true, description = "User age")
public final int age = 1;
}
but it should not, because it can be changes from other code or library like JCommander.
Environment
- Operating System: macOS Sonoma 14.0
- JDK version: Zulu 8.72.0.17-CA-macos-aarch64
- Visual Studio Code version: 1.82.2
- Java extension version: 0.25.14
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先在 vscode-java 代码库中找到 source.generate.finalModifiers 的实现和测试。使用一个带注解且可变的 Java 字段(如 issue 中的 User.age 示例)复现该行为,然后添加回归测试,表明当该字段可能被外部修改时,该设置不会添加 final。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- java, typescript, vscode
- 领域
- developer-experience, tooling
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100