Fix Nullable import in ClassFileAnnotationMetadata
Closes gh-35114 Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
This commit is contained in:
parent
2fa25b50d9
commit
1a046f9cec
|
@ -103,7 +103,7 @@ abstract class ClassFileAnnotationMetadata {
|
|||
classDesc.packageName() + "." + classDesc.displayName();
|
||||
}
|
||||
|
||||
private static Object parseArrayValue(String className, @org.jetbrains.annotations.Nullable ClassLoader classLoader, AnnotationValue.OfArray arrayValue) {
|
||||
private static Object parseArrayValue(String className, @Nullable ClassLoader classLoader, AnnotationValue.OfArray arrayValue) {
|
||||
if (arrayValue.values().isEmpty()) {
|
||||
return new Object[0];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue