From d1ec7cd0e867dba8d983c15647dc4c615d86c6d5 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Fri, 11 Jan 2008 15:19:44 -0700 Subject: [PATCH] remove debug logging --- src/compile.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/compile.cpp b/src/compile.cpp index 82c501ef87..daf0fc252a 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -2614,21 +2614,9 @@ compile(MyThread* t, Frame* initialFrame, unsigned ip) object target = resolveMethod(t, codePool(t, code), index - 1); if (UNLIKELY(t->exception)) return; - fprintf - (stderr, "invokespecial (1) %s.%s%s\n", - &byteArrayBody(t, className(t, methodClass(t, target)), 0), - &byteArrayBody(t, methodName(t, target), 0), - &byteArrayBody(t, methodSpec(t, target), 0)); - object class_ = methodClass(t, context->method); if (isSpecialMethod(t, target, class_)) { target = findMethod(t, target, classSuper(t, class_)); - - fprintf - (stderr, "invokespecial (2) %s.%s%s\n", - &byteArrayBody(t, className(t, methodClass(t, target)), 0), - &byteArrayBody(t, methodName(t, target), 0), - &byteArrayBody(t, methodSpec(t, target), 0)); } compileDirectInvoke(t, frame, target);