fix code quality issues

This commit is contained in:
まっちゃとーにゅ 2024-02-25 04:30:06 +09:00
parent 552354c895
commit 9452287380
No known key found for this signature in database
GPG key ID: 6AFBBF529601C1DB
2 changed files with 2 additions and 3 deletions

View file

@ -195,7 +195,7 @@ export class RedisSingleCache<T> {
export class MemoryKVCache<T> {
/**
*
* @deprecated
*
*/
public cache: Map<string, { date: number; value: T; }>;
private lifetime: number;
@ -213,7 +213,7 @@ export class MemoryKVCache<T> {
@bindThis
/**
* Mapにキャッシュをセットします
* @deprecated InternalEventなどで変更を全てのプロセス/
* InternalEventなどで変更を全てのプロセス/
*/
public set(key: string, value: T): void {
this.cache.set(key, {