mirror of https://git.tuxpa.in/a/code-server.git
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:
parent
dc5c271a0c
commit
325f21f73d
|
@ -480,11 +480,7 @@ export abstract class AbstractStorageService extends Disposable implements IStor
|
||||||
|
|
||||||
// --- abstract
|
// --- abstract
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
protected abstract doStore(key: string, value: string | boolean | number, scope: StorageScope): Promise<void> | void;
|
|
||||||
=======
|
|
||||||
protected abstract doInitialize(): Promise<void>;
|
protected abstract doInitialize(): Promise<void>;
|
||||||
>>>>>>> e8cd17a97d8c58fffcbac05394b3ee2b3c72d384
|
|
||||||
|
|
||||||
protected abstract getStorage(scope: StorageScope): IStorage | undefined;
|
protected abstract getStorage(scope: StorageScope): IStorage | undefined;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue