We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c60806b commit 55e4956Copy full SHA for 55e4956
src/languageModelTool.ts
@@ -139,9 +139,9 @@ async function debugJavaApplication(
139
}
140
141
// Also close any existing "Java Debug" terminals to avoid confusion
142
- for (const terminal of vscode.window.terminals) {
143
- if (terminal.name === 'Java Debug') {
144
- terminal.dispose();
+ for (const existingTerminal of vscode.window.terminals) {
+ if (existingTerminal.name === 'Java Debug') {
+ existingTerminal.dispose();
145
146
147
0 commit comments