remove unused storage property

This commit is contained in:
Bruno Windels 2022-02-18 16:47:47 +01:00
parent e3e90ed167
commit 347edb5988
2 changed files with 0 additions and 2 deletions

View File

@ -127,7 +127,6 @@ export class Session {
this._e2eeAccount,
PICKLE_KEY,
this._olm,
this._storage,
this._platform.clock.now,
this._user.id,
senderKeyLock

View File

@ -58,7 +58,6 @@ export class Decryption {
private readonly pickleKey: string,
private readonly now: () => number,
private readonly ownUserId: string,
private readonly storage: Storage,
private readonly olm: Olm,
private readonly senderKeyLock: LockMap<string>
) {}