From 945228738099c640628258899a18cb32b50b7dbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=BE=E3=81=A3=E3=81=A1=E3=82=83=E3=81=A8=E3=83=BC?= =?UTF-8?q?=E3=81=AB=E3=82=85?= <17376330+u1-liquid@users.noreply.github.com> Date: Sun, 25 Feb 2024 04:30:06 +0900 Subject: [PATCH] fix code quality issues --- packages/backend/src/core/AccountMoveService.ts | 1 - packages/backend/src/misc/cache.ts | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/backend/src/core/AccountMoveService.ts b/packages/backend/src/core/AccountMoveService.ts index 774d80f8c3..6aa2fc2fed 100644 --- a/packages/backend/src/core/AccountMoveService.ts +++ b/packages/backend/src/core/AccountMoveService.ts @@ -71,7 +71,6 @@ export class AccountMoveService { */ @bindThis public async moveFromLocal(src: MiLocalUser, dst: MiLocalUser | MiRemoteUser): Promise { - const srcUri = this.userEntityService.getUserUri(src); const dstUri = this.userEntityService.getUserUri(dst); // add movedToUri to indicate that the user has moved diff --git a/packages/backend/src/misc/cache.ts b/packages/backend/src/misc/cache.ts index 71f7b838a8..4d78095702 100644 --- a/packages/backend/src/misc/cache.ts +++ b/packages/backend/src/misc/cache.ts @@ -195,7 +195,7 @@ export class RedisSingleCache { export class MemoryKVCache { /** * データを持つマップ - * @deprecated これを直接操作するべきではない + * これを直接操作するべきではない */ public cache: Map; private lifetime: number; @@ -213,7 +213,7 @@ export class MemoryKVCache { @bindThis /** * Mapにキャッシュをセットします - * @deprecated これを直接呼び出すべきではない。InternalEventなどで変更を全てのプロセス/マシンに通知するべき + * これを直接呼び出すべきではない。InternalEventなどで変更を全てのプロセス/マシンに通知するべき */ public set(key: string, value: T): void { this.cache.set(key, {