From 18068be635791d807dbd38cce58461462934ef24 Mon Sep 17 00:00:00 2001 From: Clisprail Date: Mon, 7 Apr 2014 15:55:04 +0200 Subject: [PATCH] Fixed Verbose getter --- parabotv2/src/org/parabot/core/asm/wrappers/Getter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parabotv2/src/org/parabot/core/asm/wrappers/Getter.java b/parabotv2/src/org/parabot/core/asm/wrappers/Getter.java index 533379c..da7472f 100644 --- a/parabotv2/src/org/parabot/core/asm/wrappers/Getter.java +++ b/parabotv2/src/org/parabot/core/asm/wrappers/Getter.java @@ -33,13 +33,13 @@ public class Getter implements Injectable { */ public Getter(final String into, final String fieldLocation, final String fieldNode, final String methodName, final String returnDesc, final boolean staticMethod) { + Core.verbose(methodName + "[" + fieldLocation + "." + fieldNode + "]"); this.into = ASMUtils.getClass(into); this.fieldLocation = ASMUtils.getClass(fieldLocation); this.fieldNode = ASMUtils.getField(ASMUtils.getClass(fieldLocation), fieldNode); this.methodName = methodName; this.returnDesc = returnDesc == null ? this.fieldNode.desc : returnDesc; this.staticMethod = staticMethod; - Core.verbose(this.methodName.toString()); } /**