-
Notifications
You must be signed in to change notification settings - Fork 301
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Null-safety error related to superclass and varargs in Spring #1113
Comments
msridhar
added a commit
that referenced
this issue
Dec 26, 2024
Loading
Loading status checks…
Fixes #1113 We weren't calling the right API to check the nullability of a varargs argument when checking valid overriding. Most of this PR is tests to check handling of most of the cases.
sdeleuze
added a commit
to sdeleuze/spring-framework
that referenced
this issue
Jan 7, 2025
This commit removes warning suppressions related to uber/NullAway#1113 which is now fixed. See spring-projectsgh-28797
sdeleuze
added a commit
to sdeleuze/spring-framework
that referenced
this issue
Jan 7, 2025
This commit removes warning suppressions related to uber/NullAway#1113 which is now fixed. See spring-projectsgh-28797
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
org.springframework.cache.interceptor
null-marked package:KeyGenerator
defines a method with a@Nullable Object... params
parameterSimpleKeyGenerator
overrides this method with the same@Nullable Object... params
This error is reported by NullAway, looks like a bug to me:
The text was updated successfully, but these errors were encountered: