Skip to content

Commit

Permalink
Fix Javadoc
Browse files Browse the repository at this point in the history
Fix Javadoc for method
org.apache.logging.log4j.core.filter.StringMatchFilter.Builder.setMatchString(String)
  • Loading branch information
garydgregory committed Oct 8, 2024
1 parent bd40913 commit c055b45
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ public static class Builder extends AbstractFilterBuilder<StringMatchFilter.Buil
private String text = "";

/**
* Sets the logging level to use.
* @param text the logging level to use
* @return this
* Sets the text to search in event messages.
* @param text the text to search in event messages.
* @return this instance.
*/
public StringMatchFilter.Builder setMatchString(final String text) {
this.text = text;
Expand Down

0 comments on commit c055b45

Please sign in to comment.