/* */ {
/* 289 */ getDependenciesForAnnotation(topLevelAnnotationName, (AnnotationValue)value, dependencies);
/* */ } else {
/* 291 */ if (!(value instanceof ArrayValue))
/* */ continue;
/* 293 */ ArrayValue arrVal = (ArrayValue)value;
/* 294 */ TypeInfo type = ((ArrayInfo)arrVal.getType()).getComponentType();
/* 295 */ if (!(type instanceof AnnotationInfo))
/* */ continue;
/* 297 */ Value[] values = arrVal.getValues();
/* 298 */ for (int j = 0; j < values.length; j++)
/* */ {
/* 300 */ getDependenciesForAnnotation(topLevelAnnotationName, (AnnotationValue)values[j], dependencies);
/* */ }
/* */ }