File tree 2 files changed +3
-2
lines changed
main/java/org/springframework/core/annotation
test/java/org/springframework/core/convert/support
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2024 the original author or authors.
2
+ * Copyright 2002-2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
39
39
* applying the mapping and mirroring rules of an {@link AnnotationTypeMapping}.
40
40
*
41
41
* <p>Root attribute values are extracted from a source object using a supplied
42
- * {@code BiFunction }. This allows various different annotation models to be
42
+ * {@link ValueExtractor }. This allows various different annotation models to be
43
43
* supported by the same class. For example, the attributes source might be an
44
44
* actual {@link Annotation} instance where methods on the annotation instance
45
45
* are {@linkplain AnnotationUtils#invokeAnnotationMethod(Method, Object) invoked}
Original file line number Diff line number Diff line change @@ -582,6 +582,7 @@ void stringListToListOfSubclassOfUnboundGenericClass() {
582
582
}
583
583
584
584
@ Test
585
+ @ SuppressWarnings ("unchecked" )
585
586
void stringToListOfMapConverterWithFallbackMatch () {
586
587
conversionService .addConverter (new StringToListOfMapConverter ());
587
588
You can’t perform that action at this time.
0 commit comments