Skip to content

Commit 67e7726

Browse files
committed
Another test commit
1 parent 4c0c95c commit 67e7726

File tree

7 files changed

+15
-2
lines changed

7 files changed

+15
-2
lines changed

src/commands.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
'use strict';
66

77

8+
9+
810
import * as pathLib from 'path';
911
import * as vscode from 'vscode';
1012
import { GitErrorCodes } from './api/api1';

src/commentHandlerResolver.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
'use strict';
66

77

8+
9+
810
import * as vscode from 'vscode';
911
import Logger from './common/logger';
1012
import { GHPRComment, GHPRCommentThread, TemporaryComment } from './github/prComment';

src/constants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
*--------------------------------------------------------------------------------------------*/
55

66

7+
8+
79
export const EXTENSION_ID = 'GitHub.vscode-pull-request-github';
810
export const VSLS_REQUEST_NAME = 'git';
911
export const VSLS_GIT_PR_SESSION_NAME = 'ghpr';

src/experimentationService.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
*--------------------------------------------------------------------------------------------*/
55

66

7+
8+
79
import * as vscode from 'vscode';
810
import TelemetryReporter from 'vscode-extension-telemetry';
911
import {

src/extensionState.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55
import * as vscode from 'vscode';
6-
import { IAccount } from './github/interface';
6+
import
7+
{ IAccount } from './github/interface';
78

89

910
// Synced keys

src/gitProviders/builtinGit.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ export class BuiltinGitProvider implements IGit, vscode.Disposable {
1919

2020
}
2121

22+
23+
2224
private _onDidOpenRepository = new vscode.EventEmitter<Repository>();
2325
readonly onDidOpenRepository: vscode.Event<Repository> = this._onDidOpenRepository.event;
2426
private _onDidCloseRepository = new vscode.EventEmitter<Repository>();

src/gitProviders/vslshost.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,16 @@ import {
1414
} from '../constants';
1515

1616

17+
18+
1719
export class VSLSHost implements vscode.Disposable {
1820
private _sharedService?: SharedService;
1921
private _disposables: vscode.Disposable[];
2022
constructor(private _liveShareAPI: LiveShare, private _api: API) {
2123
this._disposables = [];
2224
}
2325

24-
26+
2527
public async initialize() {
2628
this._sharedService = (await this._liveShareAPI!.shareService(VSLS_GIT_PR_SESSION_NAME)) || undefined;
2729

0 commit comments

Comments
 (0)