From 9f51a1dd49d7a3f27758b340e77a1c2e11f632f3 Mon Sep 17 00:00:00 2001 From: nidhikmm Date: Tue, 20 May 2025 19:56:28 +0000 Subject: [PATCH 1/4] changes From daaca403dccc9081ce3c1b2d36b204f9acd237a5 Mon Sep 17 00:00:00 2001 From: nidhikmm Date: Tue, 20 May 2025 22:17:47 +0000 Subject: [PATCH 2/4] install --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..4eb4a3dd --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + + { + "type": "node", + "request": "launch", + "name": "Launch Program", + "skipFiles": [ + "/**" + ], + "program": "${file}" + } + ] +} \ No newline at end of file From d190723bb7a62958ebb96023e8bfccfc6030f803 Mon Sep 17 00:00:00 2001 From: nidhikmm Date: Tue, 20 May 2025 22:19:20 +0000 Subject: [PATCH 3/4] Add VSCode settings and launch configuration --- .vscode/launch.json | 1 + .vscode/settings.json | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/launch.json b/.vscode/launch.json index 4eb4a3dd..1e9053f9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,6 +5,7 @@ "version": "0.2.0", "configurations": [ + { "type": "node", "request": "launch", diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..b242572e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "githubPullRequests.ignoredPullRequestBranches": [ + "main" + ] +} \ No newline at end of file From 23b60ede7eb125bbaaa833826f9cd27507c98bc2 Mon Sep 17 00:00:00 2001 From: nidhikmm Date: Wed, 21 May 2025 03:32:49 +0000 Subject: [PATCH 4/4] Update VSCode settings to include null analysis mode for Java compilation --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index b242572e..3ba9e59b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,6 @@ { "githubPullRequests.ignoredPullRequestBranches": [ "main" - ] + ], + "java.compile.nullAnalysis.mode": "automatic" } \ No newline at end of file