Skip to content

Commit dc5c271

Browse files
committed
fix(lib/vscode): replace doStore with getSotrage
Inside the class BrowserStorageService, it looks like they replaced doStore with getStorage. However, at the time of writing this message, I am getting a TypeScript error saying: > Non-abstract class 'BrowserStorageService' does not implement inherited > abstract member 'doStore' from class 'AbstractStorageService'. Hopefully that will be disappear after I fix other errors.
1 parent dac44ec commit dc5c271

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

lib/vscode/src/vs/platform/storage/browser/storageService.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,8 @@ export class BrowserStorageService extends AbstractStorageService {
8282
}
8383
}
8484

85-
<<<<<<< HEAD
86-
protected doStore(key: string, value: string | boolean | number | undefined | null, scope: StorageScope): Promise<void> {
87-
return this.getStorage(scope).set(key, value);
88-
=======
8985
protected getStorage(scope: StorageScope): IStorage | undefined {
9086
return scope === StorageScope.GLOBAL ? this.globalStorage : this.workspaceStorage;
91-
>>>>>>> e8cd17a97d8c58fffcbac05394b3ee2b3c72d384
9287
}
9388

9489
protected getLogDetails(scope: StorageScope): string | undefined {

0 commit comments

Comments
 (0)