Skip to content

Commit d722b94

Browse files
committed
Merge branch '6.2.x'
2 parents 2a98b31 + 2d88f18 commit d722b94

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: spring-core/src/main/java/org/springframework/core/annotation/TypeMappedAnnotation.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2024 the original author or authors.
2+
* Copyright 2002-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@
3939
* applying the mapping and mirroring rules of an {@link AnnotationTypeMapping}.
4040
*
4141
* <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
4343
* supported by the same class. For example, the attributes source might be an
4444
* actual {@link Annotation} instance where methods on the annotation instance
4545
* are {@linkplain AnnotationUtils#invokeAnnotationMethod(Method, Object) invoked}

Diff for: spring-core/src/test/java/org/springframework/core/convert/support/GenericConversionServiceTests.java

+1
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,7 @@ void stringListToListOfSubclassOfUnboundGenericClass() {
582582
}
583583

584584
@Test
585+
@SuppressWarnings("unchecked")
585586
void stringToListOfMapConverterWithFallbackMatch() {
586587
conversionService.addConverter(new StringToListOfMapConverter());
587588

0 commit comments

Comments
 (0)