Skip to content

Commit

Permalink
Fix javadoc on KiwiHttpResponses#notFound
Browse files Browse the repository at this point in the history
Was missing the status code
  • Loading branch information
sleberknight committed Jun 2, 2024
1 parent 07f0dd5 commit 20eb1ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/kiwiproject/net/KiwiHttpResponses.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 20eb1ee

Please sign in to comment.