private void updateAnnotations(MutableMetaDataRepository repository, ClassLoader classloader, ComponentMutableMetaData component, KernelControllerContext context, FieldInfo fieldInfo, Set<AnnotationMetaData> annotations, boolean add)
{
if (annotations == null || annotations.isEmpty())
return;
Signature signature = new FieldSignature(fieldInfo);
ScopeKey scope = new ScopeKey(CommonLevels.JOINPOINT_OVERRIDE, fieldInfo.getName());
updateAnnotations(repository, classloader, component, context, signature, scope, annotations, add);
}