fix(lib/vscode): change doStore > doInitialize AbstractStorageService

Looks like they changed the doStore method to doInitialize in the
AbstractStorageService class.

It no longer accepts any parameters.
This commit is contained in:
Joe Previte 2021-03-11 10:58:48 -07:00
parent dc5c271a0c
commit 325f21f73d
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -480,11 +480,7 @@ export abstract class AbstractStorageService extends Disposable implements IStor
// --- abstract
<<<<<<< HEAD
protected abstract doStore(key: string, value: string | boolean | number, scope: StorageScope): Promise<void> | void;
=======
protected abstract doInitialize(): Promise<void>;
>>>>>>> e8cd17a97d8c58fffcbac05394b3ee2b3c72d384
protected abstract getStorage(scope: StorageScope): IStorage | undefined;