Skip to content

Commit a985a9f

Browse files
author
Tomasz Lelek
committed
BAEL-12 remove final
1 parent 3eb0575 commit a985a9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

httpclient/src/test/java/org/baeldung/httpclient/advancedconfig/HttpClientAdvancedConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public void givenClientWithCustomUserAgentHeader_whenExecuteRequest_shouldReturn
4545
.withStatus(200)));
4646

4747
HttpClient httpClient = HttpClients.createDefault();
48-
final HttpGet httpGet = new HttpGet("http://localhost:8089/detail");
48+
HttpGet httpGet = new HttpGet("http://localhost:8089/detail");
4949
httpGet.setHeader(HttpHeaders.USER_AGENT, userAgent);
5050

5151
//when

0 commit comments

Comments
 (0)