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
The create methods on org.springframework.web.client.HttpClientErrorException seems to be missing a Nullable annotation on the byte[] body parameter which is causing NullAway to generate an error when passing a null value.
The body parameter on HttpClientErrorException's constructor is Nullable which is why I believe the create methods should have a byte @Nullable [] body parameter also.
I am using 7.0.0-M8. The current code on the main branch is the same an in M8.