You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: [NullAway] Cannot pass parameter of type Function<WebFluxConfigurer, WebSocketService>, as formal parameter has type Function<WebFluxConfigurer, @org.jspecify.annotations.Nullable T>, which has mismatched type parameter nullability
The text was updated successfully, but these errors were encountered:
sdeleuze
changed the title
Undetected @Nullable annotation in a default method reference
Undetected @Nullable annotation in a method reference
Jan 13, 2025
I can reproduce this one. It's not about default methods, but the fact that the call is to a generic method and we don't handle the instances of @Nullable T correctly. This one will be a bit trickier to fix and will take a bit; probably best to just suppress for now.
With the JSpecify mode enabled, I have this interface:
And:
I get the following IMO invalid error:
The text was updated successfully, but these errors were encountered: