Skip to content

Commit

Permalink
Avoid nullability warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoeller committed Nov 10, 2021
1 parent 2a26870 commit 15a6373
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Expand Up @@ -17,6 +17,7 @@
package org.springframework.test.web.reactive.server;

import java.time.Duration;
import java.util.Objects;
import java.util.function.Consumer;

import org.hamcrest.Matcher;
Expand Down Expand Up @@ -210,10 +211,10 @@ public WebTestClient.ResponseSpec sameSite(String name, String expected) {
private ResponseCookie getCookie(String name) {
ResponseCookie cookie = this.exchangeResult.getResponseCookies().getFirst(name);
if (cookie == null) {
String message = "No cookie with name '" + name + "'";
this.exchangeResult.assertWithDiagnostics(() -> AssertionErrors.fail(message));
this.exchangeResult.assertWithDiagnostics(() ->
AssertionErrors.fail("No cookie with name '" + name + "'"));
}
return cookie;
return Objects.requireNonNull(cookie);
}

private String getMessage(String cookie) {
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2020 the original author or authors.
* Copyright 2002-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -19,6 +19,7 @@
import java.net.URI;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;

import org.hamcrest.Matcher;
Expand Down Expand Up @@ -73,7 +74,7 @@ public WebTestClient.ResponseSpec valueEquals(String headerName, long value) {
String actual = getHeaders().getFirst(headerName);
this.exchangeResult.assertWithDiagnostics(() ->
assertTrue("Response does not contain header '" + headerName + "'", actual != null));
return assertHeader(headerName, value, Long.parseLong(actual));
return assertHeader(headerName, value, Long.parseLong(Objects.requireNonNull(actual)));
}

/**
Expand Down Expand Up @@ -203,7 +204,7 @@ private List<String> getRequiredValues(String name) {
this.exchangeResult.assertWithDiagnostics(() ->
AssertionErrors.fail(getMessage(name) + " not found"));
}
return values;
return Objects.requireNonNull(values);
}

/**
Expand Down

0 comments on commit 15a6373

Please sign in to comment.