From c53a4a4097e9af95cc1ccbb881f42a11b5592714 Mon Sep 17 00:00:00 2001 From: Avior Date: Mon, 2 Dec 2019 17:26:24 +0100 Subject: [PATCH] Fix TSC Error Signed-off-by: Avior --- src/attributes/IgnoreAttribute.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/attributes/IgnoreAttribute.ts b/src/attributes/IgnoreAttribute.ts index 55876c7..703bc84 100644 --- a/src/attributes/IgnoreAttribute.ts +++ b/src/attributes/IgnoreAttribute.ts @@ -24,10 +24,8 @@ import AttributeIdentity from "./Interfaces/AttributeIdentity"; */ export default class IgnoreAttribute extends AttributeAbstract { - public trigger(event: AttributeListeners, data?: any): boolean | void | object { - console.log("pouetemon") + public trigger(_: AttributeListeners, data?: any): boolean | void | object { data[this.input.getName()] = undefined - console.log(data) return data }