Skip to content

Commit bb7a800

Browse files
committed
Fix @⁠Nullable declaration in DataBinder on 6.2.x
1 parent ba56c1a commit bb7a800

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-context/src/main/java/org/springframework/validation/DataBinder.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,8 @@ private static SortedSet<Integer> getIndexes(String paramPath, ValueResolver val
11371137
}
11381138

11391139
@SuppressWarnings("unchecked")
1140-
private <V> @Nullable V createIndexedValue(
1140+
@Nullable
1141+
private <V> V createIndexedValue(
11411142
String paramPath, Class<?> paramType, ResolvableType elementType,
11421143
String indexedPath, ValueResolver valueResolver) {
11431144

0 commit comments

Comments
 (0)