Skip to content

Commit 55e4956

Browse files
committed
fix: fix lint
1 parent c60806b commit 55e4956

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/languageModelTool.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ async function debugJavaApplication(
139139
}
140140

141141
// 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();
142+
for (const existingTerminal of vscode.window.terminals) {
143+
if (existingTerminal.name === 'Java Debug') {
144+
existingTerminal.dispose();
145145
}
146146
}
147147

0 commit comments

Comments
 (0)