use of com.jopdesign.common.graphutils.MethodTraverser in project jop by jop-devel.
the class PhaseExecutor method removeDebugAttributes.
public void removeDebugAttributes() {
logger.info("Starting removal of debug attributes");
MethodVisitor visitor = new MethodVisitor() {
@Override
public void visitMethod(MethodInfo method) {
method.getCode().removeDebugAttributes();
}
};
appInfo.iterate(new MethodTraverser(visitor, true));
logger.info("Finished removal of debug attributes");
}
Aggregations