Skip to content

Commit fccc14a

Browse files
committed
Remove empty ctor
1 parent 7574d1d commit fccc14a

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/vs/platform/remote/common/tunnelService.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ import { ITunnelService, RemoteTunnel } from 'vs/platform/remote/common/tunnel';
88
export class NoOpTunnelService implements ITunnelService {
99
_serviceBrand: undefined;
1010

11-
public constructor(
12-
) {
13-
}
14-
15-
openTunnel(remotePort: number): Promise<RemoteTunnel> | undefined {
11+
openTunnel(_remotePort: number): Promise<RemoteTunnel> | undefined {
1612
return undefined;
1713
}
1814
}

0 commit comments

Comments
 (0)