Skip to content

Commit cd7c650

Browse files
committed
Merge branch '6.1.x'
2 parents d3e1e35 + a31945f commit cd7c650

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework-docs/modules/ROOT/pages/integration/rest-clients.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ String result = restClient.get() <1>
289289
.uri("https://example.com/this-url-does-not-exist") <1>
290290
.retrieve()
291291
.onStatus(HttpStatusCode::is4xxClientError, (request, response) -> { <2>
292-
throw new MyCustomRuntimeException(response.getStatusCode(), response.getHeaders()) <3>
292+
throw new MyCustomRuntimeException(response.getStatusCode(), response.getHeaders()); <3>
293293
})
294294
.body(String.class);
295295
----

0 commit comments

Comments
 (0)