Disable muzzle

This commit is contained in:
Andrew Kent 2018-05-21 10:51:11 -07:00
parent 0bd7a62464
commit 217dd411de
2 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,7 @@ import spock.lang.Specification
class MuzzleBytecodeTransformTest extends Specification {
/*
def "muzzle fields added to all instrumentation"() {
setup:
List<Class> unMuzzledClasses = []
@ -44,5 +45,6 @@ class MuzzleBytecodeTransformTest extends Specification {
nonLazyFields == []
unInitFields == []
}
*/
}

View File

@ -42,7 +42,8 @@ public class MuzzleGradlePlugin implements Plugin {
}
instrumenter = instrumenter.getSuperClass();
}
return isInstrumenter;
// return isInstrumenter;
return false;
}
@Override