Merge pull request #1108 from DataDog/dougqh/dont-load-jasper-advice
Eliminate class expression to Advice class
This commit is contained in:
commit
ce1d6b8460
|
@ -42,7 +42,8 @@ public final class JasperJSPCompilationContextInstrumentation extends Instrument
|
|||
public Map<? extends ElementMatcher<? super MethodDescription>, String> transformers() {
|
||||
return singletonMap(
|
||||
named("compile").and(takesArguments(0)).and(isPublic()),
|
||||
JasperJspCompilationContext.class.getName());
|
||||
JasperJSPCompilationContextInstrumentation.class.getName()
|
||||
+ "$JasperJspCompilationContext");
|
||||
}
|
||||
|
||||
public static class JasperJspCompilationContext {
|
||||
|
|
Loading…
Reference in New Issue