Skip to content

Commit 1a046f9

Browse files
ngocnhan-tran1996bclozel
authored andcommitted
Fix Nullable import in ClassFileAnnotationMetadata
Closes gh-35114 Signed-off-by: Tran Ngoc Nhan <[email protected]>
1 parent 2fa25b5 commit 1a046f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-core/src/main/java24/org/springframework/core/type/classreading/ClassFileAnnotationMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ private static String fromTypeDescriptor(String descriptor) {
103103
classDesc.packageName() + "." + classDesc.displayName();
104104
}
105105

106-
private static Object parseArrayValue(String className, @org.jetbrains.annotations.Nullable ClassLoader classLoader, AnnotationValue.OfArray arrayValue) {
106+
private static Object parseArrayValue(String className, @Nullable ClassLoader classLoader, AnnotationValue.OfArray arrayValue) {
107107
if (arrayValue.values().isEmpty()) {
108108
return new Object[0];
109109
}

0 commit comments

Comments
 (0)