// index.
offsets.put(method.getName(), hashes.get(toWrite));
}
private boolean getValidated(JMethod method) {
Validated validated = method.getAnnotation(Validated.class);
if (validated == null) {
return true;
} else {
return validated.validated();
}
}