From 46b7d9a3737d184767c7ab984a1d478dc4e040ab Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Fri, 30 Jul 2021 14:11:00 +0530 Subject: [PATCH] Add explaining comment Signed-off-by: RMidhunSuresh --- src/matrix/LoginMethod.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/matrix/LoginMethod.js b/src/matrix/LoginMethod.js index 9ec51a90..2dbab85e 100644 --- a/src/matrix/LoginMethod.js +++ b/src/matrix/LoginMethod.js @@ -22,6 +22,10 @@ export class LoginMethod { // eslint-disable-next-line no-unused-vars async login(hsApi, deviceName) { + /* + Regardless of the login method, SessionContainer.startWithLogin() + can do SomeLoginMethod.login() + */ throw("Not Implemented"); } }