use of io.fabric8.apmagent.MethodDescription in project fabric8 by jboss-fuse.
the class ApmAgentContext method resetAll.
public void resetAll(ClassInfo classInfo) {
Collection<MethodDescription> list = classInfo.getTransformedMethodDescriptions();
for (MethodDescription methodDescription : list) {
remove(methodDescription);
}
classInfo.resetTransformed();
}
use of io.fabric8.apmagent.MethodDescription in project fabric8 by fabric8io.
the class ApmAgentContext method resetAll.
public void resetAll(ClassInfo classInfo) {
Collection<MethodDescription> list = classInfo.getTransformedMethodDescriptions();
for (MethodDescription methodDescription : list) {
remove(methodDescription);
}
classInfo.resetTransformed();
}
Aggregations