From 1c8446eb2fe3597c208a5bb218b6e5469aae775a Mon Sep 17 00:00:00 2001 From: GloRRian55 Date: Tue, 10 Dec 2024 13:35:07 +0300 Subject: [PATCH] improve javodoc --- .../micronaut/http/server/HttpServerConfiguration.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/http-server/src/main/java/io/micronaut/http/server/HttpServerConfiguration.java b/http-server/src/main/java/io/micronaut/http/server/HttpServerConfiguration.java index 1fa10a79c8..412b2b6f2e 100644 --- a/http-server/src/main/java/io/micronaut/http/server/HttpServerConfiguration.java +++ b/http-server/src/main/java/io/micronaut/http/server/HttpServerConfiguration.java @@ -607,7 +607,10 @@ public void setNotFoundOnMissingBody(boolean notFoundOnMissingBody) { } /** - * @return {@code true} if ';' is normal, {@code false} otherwise. + * Returns whether the semicolon is considered a normal character in the query. + * A "normal" semicolon is one that is not used as a parameter separator. + * + * @return {@code true} if the semicolon is a normal character, {@code false} otherwise. * @since 4.8 */ public boolean isSemicolonIsNormalChar() { @@ -615,7 +618,10 @@ public boolean isSemicolonIsNormalChar() { } /** - * @param semicolonIsNormalChar {@code true} to treat ';' normally, {@code false} otherwise. + * Sets whether the semicolon should be considered a normal character in the query. + * A "normal" semicolon is one that is not used as a parameter separator. + * + * @param semicolonIsNormalChar {@code true} if the semicolon should be a normal character, {@code false} otherwise. * @since 4.8 */ public void setSemicolonIsNormalChar(boolean semicolonIsNormalChar) {