From ab4fbb2e3380db8b045093ab76955a2a5a1b3b5c Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 15 Jan 2019 10:10:41 +0900 Subject: [PATCH] Update module.ts --- src/module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/module.ts b/src/module.ts index 50c4e04..0a72d4f 100644 --- a/src/module.ts +++ b/src/module.ts @@ -19,12 +19,12 @@ export default abstract class Module { } @autobind - public subscribeReply(key: string, isMessage: boolean, id: string, data?: any) { + protected subscribeReply(key: string, isMessage: boolean, id: string, data?: any) { this.ai.subscribeReply(this, key, isMessage, id, data); } @autobind - public unsubscribeReply(key: string) { + protected unsubscribeReply(key: string) { this.ai.unsubscribeReply(this, key); } }