this.idGenerator.remove();
}
}
private void processMethod(Method method) {
ProfileMethod profileMethod = method.getAnnotation(ProfileMethod.class);
if (profileMethod == null) {
return;
}
String name = profileMethod.name();
ProfileMethodType type = profileMethod.type();
this.checkProfileMethodSignature(method, name, type);
this.installProfileMethod(method, name, type);
}