Skip to content

Commit ea50a10

Browse files
authored
Merge pull request #2593 from microsoft/dev/v-peq/removeEmptyOnChangeConfiguration
refactor: remove empty onChangeConfiguration listener and function
2 parents 0f8e919 + 57a0dd0 commit ea50a10

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

src/extension/rn-extension.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,6 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
136136
onChangeWorkspaceFolders(event),
137137
),
138138
);
139-
EXTENSION_CONTEXT.subscriptions.push(
140-
vscode.workspace.onDidChangeConfiguration(() => onChangeConfiguration()),
141-
);
142139
EXTENSION_CONTEXT.subscriptions.push(TipNotificationService.getInstance());
143140
EXTENSION_CONTEXT.subscriptions.push(SurveyService.getInstance());
144141

@@ -259,11 +256,6 @@ function onChangeWorkspaceFolders(event: vscode.WorkspaceFoldersChangeEvent) {
259256
}
260257
}
261258

262-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
263-
function onChangeConfiguration() {
264-
// TODO implements
265-
}
266-
267259
export function createAdditionalWorkspaceFolder(folderPath: string): vscode.WorkspaceFolder | null {
268260
if (fs.existsSync(folderPath)) {
269261
const folderUri = vscode.Uri.file(folderPath);

0 commit comments

Comments
 (0)