From 84f313af8af162cdbfc8a20c5823e24e91bc37c5 Mon Sep 17 00:00:00 2001 From: pypy Date: Thu, 21 Jan 2021 12:04:09 +0900 Subject: [PATCH] deprecated --- html/src/service/gamelog.js | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/html/src/service/gamelog.js b/html/src/service/gamelog.js index 62a97263..64b6f024 100644 --- a/html/src/service/gamelog.js +++ b/html/src/service/gamelog.js @@ -14,13 +14,6 @@ class GameLogService { context = { updatedAt: null, - // auth - loginProvider: null, - loginUser: null, - - // hmd - hmdModel: null, - // location location: null, }; @@ -30,15 +23,6 @@ class GameLogService { var gameLog = parseRawGameLog(dt, type, args); switch (gameLog.type) { - case 'auth': - context.loginProvider = gameLog.loginProvider; - context.loginUser = gameLog.loginUser; - break; - - case 'hmd-model': - context.hmdModel = gameLog.hmdModel; - break; - case 'location': context.location = gameLog.location; break; @@ -65,15 +49,6 @@ function parseRawGameLog(dt, type, args) { }; switch (type) { - case 'auth': - gameLog.loginProvider = args[0]; - gameLog.loginUser = args[1]; - break; - - case 'hmd-model': - gameLog.hmdModel = args[0]; - break; - case 'location': gameLog.location = args[0]; break;