Skip to content

Commit

Permalink
improve javodoc
Browse files Browse the repository at this point in the history
  • Loading branch information
glorrian committed Dec 10, 2024
1 parent dc4f915 commit 1c8446e
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -607,15 +607,21 @@ 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() {
return semicolonIsNormalChar;
}

/**
* @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) {
Expand Down

0 comments on commit 1c8446e

Please sign in to comment.