Remove unneeded @SuppressWarnings("NullAway")

Closes gh-32542
This commit is contained in:
Sébastien Deleuze
2024-05-06 17:58:14 +02:00
parent 93dcbc41b0
commit 12272d6e41
10 changed files with 1 additions and 11 deletions

View File

@@ -116,7 +116,6 @@ final class MultipartParser extends BaseSubscriber<DataBuffer> {
}
@Override
@SuppressWarnings("NullAway")
protected void hookOnNext(DataBuffer value) {
this.requestOutstanding.set(false);
this.state.get().onNext(value);

View File

@@ -543,7 +543,6 @@ final class DefaultRestClient implements RestClient {
}
}
@SuppressWarnings("NullAway")
private ClientHttpRequest createRequest(URI uri) throws IOException {
ClientHttpRequestFactory factory;
if (DefaultRestClient.this.interceptors != null) {