Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Yinnii committed Apr 9, 2024
1 parent d07feb2 commit 979c6be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ public void run() {
HttpResponse<String> serviceResponse = httpClient.send(httpRequest, HttpResponse.BodyHandlers.ofString());
int responseCode = serviceResponse.statusCode();
System.out.println("Response Code:" + responseCode);
System.out.println("Response Text" + serviceResponse.body())
} catch {
System.out.println("Response Text" + serviceResponse.body());
} catch (Exception e) {
System.out.println("Error occured.");
}
// Store usertext with label
Expand Down

0 comments on commit 979c6be

Please sign in to comment.