Skip to content

Commit 4c0c95c

Browse files
committed
See if it repros again
1 parent bea2785 commit 4c0c95c

File tree

5 files changed

+8
-1
lines changed

5 files changed

+8
-1
lines changed

src/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ export const VSLS_REQUEST_NAME = 'git';
99
export const VSLS_GIT_PR_SESSION_NAME = 'ghpr';
1010

1111
export const VSLS_REPOSITORY_INITIALIZATION_NAME = 'initialize';
12+
1213
export const VSLS_STATE_CHANGE_NOTIFY_NAME = 'statechange';
1314
export const FOCUS_REVIEW_MODE = 'github:focusedReview';

src/experimentationService.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
IExperimentationService,
1212
IExperimentationTelemetry,
1313
TargetPopulation,
14+
1415
} from 'vscode-tas-client';
1516

1617
/* __GDPR__
@@ -20,6 +21,7 @@ import {
2021
}
2122
*/
2223

24+
2325
export class ExperimentationTelemetry implements IExperimentationTelemetry {
2426
private sharedProperties: Record<string, string> = {};
2527

src/extension.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import { GitApiImpl } from './api/api1';
1313
import { registerCommands } from './commands';
1414
import Logger from './common/logger';
1515
import * as PersistentState from './common/persistentState';
16+
1617
import { Resource } from './common/resources';
1718
import { SessionState } from './common/sessionState';
1819
import { FILE_LIST_LAYOUT } from './common/settingKeys';

src/extensionState.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ export const REPO_KEYS = 'github.pullRequest.repos';
1414

1515
export interface RepoState {
1616
mentionableUsers?: IAccount[];
17+
1718
stateModifiedTime?: number;
18-
19+
1920
}
2021

2122
export interface ReposState {

src/gitExtensionIntegration.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ interface Repository {
1313
readonly description: string | null;
1414
readonly clone_url: string;
1515
readonly ssh_url: string;
16+
1617
}
1718

1819
function repoResponseAsRemoteSource(raw: OctokitCommon.SearchReposResponseItem): RemoteSource {
@@ -21,6 +22,7 @@ function repoResponseAsRemoteSource(raw: OctokitCommon.SearchReposResponseItem):
2122
description: raw.description || undefined,
2223
url: raw.url,
2324
};
25+
2426
}
2527

2628
function asRemoteSource(raw: Repository): RemoteSource {

0 commit comments

Comments
 (0)