Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
dvoet committed Dec 4, 2023
1 parent 207d7da commit acfe71b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ public String getHttpRequestMethod(ClientRequestContext clientRequestContext) {
@Override
public List<String> getHttpRequestHeader(
ClientRequestContext clientRequestContext, String name) {
return Objects.requireNonNullElse(clientRequestContext.getStringHeaders().get(name), List.of());
return Objects.requireNonNullElse(
clientRequestContext.getStringHeaders().get(name), List.of());
}

@Nullable
Expand Down

0 comments on commit acfe71b

Please sign in to comment.