temporarily disable constructor tracing

This commit is contained in:
Maxim.Mossienko
2015-07-23 01:54:50 +02:00
parent 05963d749b
commit e12b5f1edc
2 changed files with 1 additions and 1 deletions
@@ -23,7 +23,7 @@ public class InstrumentedMethodsFilter {
if ((access & Opcodes.ACC_ABSTRACT) != 0) return false; //skip abstracts; do not include interfaces without non-abstract methods in result
if ("<clinit>".equals(name) || //static initializer
((access & Opcodes.ACC_SYNTHETIC) != 0 && name.startsWith("access$")) || // synthetic access method
name.equals("<init>") && signature != null && signature.equals("()V") // default constructor
name.equals("<init>") //&& signature != null && signature.equals("()V") // todo: constructor
) {
// todo skip only trivial default constructor
return false;
Binary file not shown.