Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo committed Sep 21, 2023
1 parent bcfd80f commit 021aab2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions extension/src/bs/BuildServerController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,11 @@ export class BuildServerController implements Disposable {
}),
commands.registerCommand(SEND_TELEMETRY_CMD, (jsonString: string) => {
const log = JSON.parse(jsonString);
const obj = {
sendInfo("", {
kind: log.kind,
data: jsonString,
...log.schemaVersion && {schemaVersion: log.schemaVersion},
};
sendInfo("", obj);
...(log.schemaVersion && { schemaVersion: log.schemaVersion }),
});
}),
workspace.onDidChangeConfiguration((e: ConfigurationChangeEvent) => {
if (e.affectsConfiguration("java.gradle.buildServer.enabled")) {
Expand Down

0 comments on commit 021aab2

Please sign in to comment.