Cleanup unused properties

This commit is contained in:
Christof Marti
2019-04-05 10:08:50 +02:00
parent bad66ff5e1
commit d4be221aaa
5 changed files with 1 additions and 10 deletions

View File

@@ -700,8 +700,6 @@ export class ExtHostExtensionService implements ExtHostExtensionServiceShape {
authority: remoteAuthority,
host: result.host,
port: result.port,
debugListenPort: result.debugListenPort,
debugConnectPort: result.debugConnectPort,
};
}

View File

@@ -432,8 +432,6 @@ export class Selection extends Range {
export class ResolvedAuthority {
readonly host: string;
readonly port: number;
debugListenPort?: number;
debugConnectPort?: number;
constructor(host: string, port: number) {
if (typeof host !== 'string' || host.length === 0) {