Skip to content

Commit d04a6b2

Browse files
committed
💄
1 parent af6a17c commit d04a6b2

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

src/vs/platform/request/browser/requestService.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ export class RequestService {
5656
xhr.timeout = options.timeout;
5757
}
5858

59-
// TODO: remove any
60-
xhr.send(options.data as any);
59+
xhr.send(options.data);
6160

6261
// cancel
6362
token.onCancellationRequested(() => {

src/vs/platform/request/node/requestService.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ export class RequestService extends Disposable implements IRequestService {
3737

3838
_serviceBrand: any;
3939

40-
protected proxyUrl?: string;
41-
protected strictSSL: boolean;
42-
protected authorization?: string;
40+
private proxyUrl?: string;
41+
private strictSSL: boolean;
42+
private authorization?: string;
4343

4444
constructor(
4545
@IConfigurationService configurationService: IConfigurationService,

0 commit comments

Comments
 (0)