From 2457e0794dcddb8d7deb31f51d15752fc079d902 Mon Sep 17 00:00:00 2001 From: Chomp Date: Tue, 13 Dec 2022 14:27:19 +0000 Subject: [PATCH] Remove incorrect comment --- TypeScript/5ReplaceMethod/src/mod.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/TypeScript/5ReplaceMethod/src/mod.ts b/TypeScript/5ReplaceMethod/src/mod.ts index e5f6f53..a9c0208 100644 --- a/TypeScript/5ReplaceMethod/src/mod.ts +++ b/TypeScript/5ReplaceMethod/src/mod.ts @@ -27,8 +27,6 @@ class Mod implements IPreAkiLoadMod // We want to replace the original method logic with something different result.login = (info: ILoginRequestData) => { - // We are calling a replacement function, technically you could also do: - // result.login = this.replacementFunction; return this.replacementFunction(info); } // The modifier Always makes sure this replacement method is ALWAYS replaced