diff --git a/java/execution/impl/testDiscovery/org/jetbrains/testme/instrumentation/InstrumentedMethodsFilter.java b/java/execution/impl/testDiscovery/org/jetbrains/testme/instrumentation/InstrumentedMethodsFilter.java index b07f94daee7d..d71db76c9b39 100644 --- a/java/execution/impl/testDiscovery/org/jetbrains/testme/instrumentation/InstrumentedMethodsFilter.java +++ b/java/execution/impl/testDiscovery/org/jetbrains/testme/instrumentation/InstrumentedMethodsFilter.java @@ -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 ("".equals(name) || //static initializer ((access & Opcodes.ACC_SYNTHETIC) != 0 && name.startsWith("access$")) || // synthetic access method - name.equals("") && signature != null && signature.equals("()V") // default constructor + name.equals("") //&& signature != null && signature.equals("()V") // todo: constructor ) { // todo skip only trivial default constructor return false; diff --git a/lib/testDiscoveryInstrumenter.jar b/lib/testDiscoveryInstrumenter.jar index 1566600a001c..00e07bacc2ed 100644 Binary files a/lib/testDiscoveryInstrumenter.jar and b/lib/testDiscoveryInstrumenter.jar differ