Skip to content

Commit

Permalink
Add else block
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo committed Jun 12, 2024
1 parent f9f3436 commit aa35b3e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions extension/src/bs/BuildServerController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,13 @@ export class BuildServerController implements Disposable {
rootCauseMessage,
trace,
});
} else {
sendInfo("", {
kind: kind,
data2: JSON.stringify(rest),
...(schemaVersion && { schemaVersion: schemaVersion }),
});
}
sendInfo("", {
kind: kind,
data2: JSON.stringify(rest),
...(schemaVersion && { schemaVersion: schemaVersion }),
});
}),
workspace.onDidChangeConfiguration((e: ConfigurationChangeEvent) => {
if (e.affectsConfiguration("java.gradle.buildServer.enabled")) {
Expand Down

0 comments on commit aa35b3e

Please sign in to comment.