@@ -71,10 +71,10 @@ private void handleNamedQueryRepeatableAnnotation(String annotationName, boolean
71
71
final AnnotationValue value = getAnnotationValue ( mirror , "value" );
72
72
if ( value != null ) {
73
73
@ SuppressWarnings ("unchecked" )
74
- final List <? extends AnnotationMirror > values =
75
- (List <? extends AnnotationMirror >) value .getValue ();
76
- for ( AnnotationMirror annotationMirror : values ) {
77
- handleNamedQuery ( annotationMirror , checkHql );
74
+ final List <? extends AnnotationValue > annotationValues =
75
+ (List <? extends AnnotationValue >) value .getValue ();
76
+ for ( AnnotationValue annotationValue : annotationValues ) {
77
+ handleNamedQuery ( ( AnnotationMirror ) annotationValue . getValue () , checkHql );
78
78
}
79
79
}
80
80
}
@@ -134,10 +134,10 @@ private void addAuxiliaryMembersForRepeatableAnnotation(String annotationName, S
134
134
final AnnotationValue value = getAnnotationValue ( mirror , "value" );
135
135
if ( value != null ) {
136
136
@ SuppressWarnings ("unchecked" )
137
- final List <? extends AnnotationMirror > values =
138
- (List <? extends AnnotationMirror >) value .getValue ();
139
- for ( AnnotationMirror annotationMirror : values ) {
140
- addAuxiliaryMembersForMirror ( annotationMirror , prefix );
137
+ final List <? extends AnnotationValue > annotationValues =
138
+ (List <? extends AnnotationValue >) value .getValue ();
139
+ for ( AnnotationValue annotationValue : annotationValues ) {
140
+ addAuxiliaryMembersForMirror ( ( AnnotationMirror ) annotationValue . getValue () , prefix );
141
141
}
142
142
}
143
143
}
0 commit comments