Skip to content

Commit

Permalink
codestyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YevheniiVlasenko committed May 6, 2024
1 parent c74b2b2 commit 137e1e6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ public List<Character> getAll() throws IOException {
.GET()
.uri(URI.create(URL))
.build();
HttpResponse<String> response = httpClient.send(request, HttpResponse.BodyHandlers.ofString());
HttpResponse<String> response = httpClient.send(request,
HttpResponse.BodyHandlers.ofString());
JsonNode rootNode = objectMapper.readTree(response.body());
resultsNode = rootNode.get("results");
} catch (IOException | InterruptedException e) {
Expand Down

0 comments on commit 137e1e6

Please sign in to comment.