From 20eb1ee6284413de56493c35d5797b9c760d1f78 Mon Sep 17 00:00:00 2001 From: Scott Leberknight <174812+sleberknight@users.noreply.github.com> Date: Sun, 2 Jun 2024 09:46:50 -0400 Subject: [PATCH] Fix javadoc on KiwiHttpResponses#notFound Was missing the status code --- src/main/java/org/kiwiproject/net/KiwiHttpResponses.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/kiwiproject/net/KiwiHttpResponses.java b/src/main/java/org/kiwiproject/net/KiwiHttpResponses.java index d78d594a..c9fd18a1 100644 --- a/src/main/java/org/kiwiproject/net/KiwiHttpResponses.java +++ b/src/main/java/org/kiwiproject/net/KiwiHttpResponses.java @@ -199,7 +199,7 @@ public static boolean forbidden(int statusCode) { * Check if the given status code is 404 Not Found. * * @param statusCode the status code to check - * @return true if the status code is , otherwise false + * @return true if the status code is 404, otherwise false */ public static boolean notFound(int statusCode) { return statusCode == 404;