Skip to content

Commit bea2785

Browse files
committed
Make a commit to try to repro
1 parent d1de833 commit bea2785

File tree

7 files changed

+8
-0
lines changed

7 files changed

+8
-0
lines changed

src/commands.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import { ReviewManager } from './view/reviewManager';
3030
import { CategoryTreeNode } from './view/treeNodes/categoryNode';
3131
import { CommitNode } from './view/treeNodes/commitNode';
3232
import { DescriptionNode } from './view/treeNodes/descriptionNode';
33+
3334
import {
3435
GitFileChangeNode,
3536
InMemFileChangeNode,

src/commentHandlerResolver.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export interface CommentHandler {
2424
unresolveReviewThread(thread: GHPRCommentThread, input?: string): Promise<void>;
2525
}
2626

27+
2728
export interface CommentReply {
2829
thread: GHPRCommentThread & { value: GHPRCommentThread };
2930
text: string;

src/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
export const EXTENSION_ID = 'GitHub.vscode-pull-request-github';
88
export const VSLS_REQUEST_NAME = 'git';
99
export const VSLS_GIT_PR_SESSION_NAME = 'ghpr';
10+
1011
export const VSLS_REPOSITORY_INITIALIZATION_NAME = 'initialize';
1112
export const VSLS_STATE_CHANGE_NOTIFY_NAME = 'statechange';
1213
export const FOCUS_REVIEW_MODE = 'github:focusedReview';

src/experimentationService.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import {
1414
} from 'vscode-tas-client';
1515

1616
/* __GDPR__
17+
1718
"query-expfeature" : {
1819
"ABExp.queriedFeature": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
1920
}

src/extensionState.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export const REPO_KEYS = 'github.pullRequest.repos';
1515
export interface RepoState {
1616
mentionableUsers?: IAccount[];
1717
stateModifiedTime?: number;
18+
1819
}
1920

2021
export interface ReposState {

src/gitProviders/builtinGit.ts

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

1616
get state(): APIState {
1717
return this._gitAPI.state;
18+
19+
1820
}
1921

2022
private _onDidOpenRepository = new vscode.EventEmitter<Repository>();

src/gitProviders/vslshost.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export class VSLSHost implements vscode.Disposable {
2121
this._disposables = [];
2222
}
2323

24+
2425
public async initialize() {
2526
this._sharedService = (await this._liveShareAPI!.shareService(VSLS_GIT_PR_SESSION_NAME)) || undefined;
2627

0 commit comments

Comments
 (0)