@Override
protected Void process(String file) throws FileNotFoundException, IOException {
injectProfilerStubs(meta);
ClassVisitor cv = new ProfileVisitor(cw, meta);
cv = new ProfileAnnotationRemoverWeaver(cv);
cr.accept(cv, ClassReader.EXPAND_FRAMES);
ClassUtil.writeClass(cw, file);
return null;