@@ -478,7 +478,7 @@ public static <A extends Annotation> Set<A> getMergedRepeatableAnnotations(
478
478
* attributes from all annotations found, or {@code null} if not found
479
479
* @see #getAllAnnotationAttributes(AnnotatedElement, String, boolean, boolean)
480
480
*/
481
- public static MultiValueMap <String , @ Nullable Object > getAllAnnotationAttributes (
481
+ public static @ Nullable MultiValueMap <String , @ Nullable Object > getAllAnnotationAttributes (
482
482
AnnotatedElement element , String annotationName ) {
483
483
484
484
return getAllAnnotationAttributes (element , annotationName , false , false );
@@ -502,7 +502,7 @@ public static <A extends Annotation> Set<A> getMergedRepeatableAnnotations(
502
502
* @return a {@link MultiValueMap} keyed by attribute name, containing the annotation
503
503
* attributes from all annotations found, or {@code null} if not found
504
504
*/
505
- public static MultiValueMap <String , @ Nullable Object > getAllAnnotationAttributes (AnnotatedElement element ,
505
+ public static @ Nullable MultiValueMap <String , @ Nullable Object > getAllAnnotationAttributes (AnnotatedElement element ,
506
506
String annotationName , final boolean classValuesAsString , final boolean nestedAnnotationsAsMap ) {
507
507
508
508
Adapt [] adaptations = Adapt .values (classValuesAsString , nestedAnnotationsAsMap );
0 commit comments