From 39c772300a087e466b10d4db813c8ffd60fc2308 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 20 Apr 2021 16:21:35 +0200 Subject: [PATCH] fix indenting --- src/matrix/storage/idb/stores/InviteStore.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/matrix/storage/idb/stores/InviteStore.js b/src/matrix/storage/idb/stores/InviteStore.js index a3c7517a..41a2351a 100644 --- a/src/matrix/storage/idb/stores/InviteStore.js +++ b/src/matrix/storage/idb/stores/InviteStore.js @@ -15,17 +15,17 @@ limitations under the License. */ export class InviteStore { - constructor(inviteStore) { - this._inviteStore = inviteStore; - } + constructor(inviteStore) { + this._inviteStore = inviteStore; + } - getAll() { - return this._inviteStore.selectAll(); - } + getAll() { + return this._inviteStore.selectAll(); + } - set(invite) { - return this._inviteStore.put(invite); - } + set(invite) { + return this._inviteStore.put(invite); + } remove(roomId) { this._store.delete(roomId);