Skip to content

Commit f2ab6ea

Browse files
CsCherrYYrgrunber
authored andcommitted
set null analysis default option to interactive
Signed-off-by: Shi Chen <[email protected]>
1 parent 6d10e1a commit f2ab6ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ The following settings are supported:
212212
* `java.completion.postfix.enabled`: Enable/disable postfix completion support. Defaults to `true`.
213213

214214
New in 1.13.0
215-
* `java.compile.nullAnalysis.mode`: Specify how to enable the annotation-based null analysis. Supported values are `disabled` (disable the null analysis), `interactive` (asks when null annotation types are detected), `automatic` (automatically enable null analysis when null annotation types are detected). Defaults to `disabled`.
215+
* `java.compile.nullAnalysis.mode`: Specify how to enable the annotation-based null analysis. Supported values are `disabled` (disable the null analysis), `interactive` (asks when null annotation types are detected), `automatic` (automatically enable null analysis when null annotation types are detected). Defaults to `interactive`.
216216
* `java.cleanup.actionsOnSave`: The list of clean ups to be run on the current document when it's saved. Clean ups can automatically fix code style or programming mistakes. [Click here](document/_java.learnMoreAboutCleanUps.md#java-clean-ups) to learn more about what each clean up does.
217217

218218
Semantic Highlighting

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,7 @@
994994
"interactive",
995995
"automatic"
996996
],
997-
"default": "disabled",
997+
"default": "interactive",
998998
"markdownDescription": "Specify how to enable the annotation-based null analysis.",
999999
"scope": "window"
10001000
},

0 commit comments

Comments
 (0)