File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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-
267259export function createAdditionalWorkspaceFolder ( folderPath : string ) : vscode . WorkspaceFolder | null {
268260 if ( fs . existsSync ( folderPath ) ) {
269261 const folderUri = vscode . Uri . file ( folderPath ) ;
You can’t perform that action at this time.
0 commit comments