From 33b73c44b8fb7ec9723cc9bedccad8a6a150891d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Rasie=C5=84ski?= Date: Wed, 14 Jan 2026 19:36:40 +0100 Subject: [PATCH] Wrong comment --- client/src/main/java/client/utils/ServerUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main/java/client/utils/ServerUtils.java b/client/src/main/java/client/utils/ServerUtils.java index 101486a..113ed01 100644 --- a/client/src/main/java/client/utils/ServerUtils.java +++ b/client/src/main/java/client/utils/ServerUtils.java @@ -149,7 +149,7 @@ public class ServerUtils { //Get the recipe HttpRequest request = HttpRequest.newBuilder() .uri(URI.create(SERVER + "/recipe/" + id)) - .GET() //Needs to be changed to POST() when api is changed + .GET() .build(); HttpResponse response = client.send(request, HttpResponse.BodyHandlers.ofString());