Skip to content

Commit

Permalink
chore: remove unused URL
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlday committed Mar 3, 2024
1 parent c9a6af0 commit 57051f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ConfigurationManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import * as execa from "execa";
import * as glob from "glob";
import * as path from "path";
import * as portfinder from "portfinder";
import { URL } from "url";
// import { URL } from "url";
import {
commands,
ConfigurationChangeEvent,
Expand Down Expand Up @@ -503,11 +503,11 @@ export class ConfigurationManager implements Disposable {
}
},
);
this.process.stderr.addListener("data", (data: string) => {
this.process.stderr?.addListener("data", (data: string) => {
Constants.EXTENSION_OUTPUT_CHANNEL.appendLine(data);
Constants.EXTENSION_OUTPUT_CHANNEL.show(true);
});
this.process.stdout.addListener("data", (data: string) => {
this.process.stdout?.addListener("data", (data: string) => {
Constants.EXTENSION_OUTPUT_CHANNEL.appendLine(data);
});
this.serviceUrl = this.findServiceUrl(this.getServiceType());
Expand Down

0 comments on commit 57051f5

Please sign in to comment.