From 7e4b135a2383b1c08ebdd866de260d6169767f77 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Thu, 15 Jun 2023 16:09:31 +1000 Subject: [PATCH] Remove unused comments --- backend/src/entities/Game.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/backend/src/entities/Game.ts b/backend/src/entities/Game.ts index facf8f7..b815457 100644 --- a/backend/src/entities/Game.ts +++ b/backend/src/entities/Game.ts @@ -18,21 +18,16 @@ export default class Game { } getPartyState(): PartyState { - // const result = await this.redis.json_hgetall(`game:${gameId}:partyState`); const result = this.partyState; return result; } getGamePasswordHash(): string { - // const result = await this.redis.get(`game:${gameId}:passwordHash`); - const result = this.passwordHash; return result; } setGamePasswordHash(hash: string): void { - // const result = await this.redis.set(`game:${gameId}:passwordHash`, hash); - this.passwordHash = hash; }