This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-text.git
The following commit(s) were added to refs/heads/master by this push: new 2cf2f6d Javadoc. 2cf2f6d is described below commit 2cf2f6da1ae49d0d2a39f6ef65a2ed2015e63355 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jun 27 07:02:18 2020 -0400 Javadoc. --- .../org/apache/commons/text/matcher/AbstractStringMatcher.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/text/matcher/AbstractStringMatcher.java b/src/main/java/org/apache/commons/text/matcher/AbstractStringMatcher.java index ba25f07..1192d0e 100644 --- a/src/main/java/org/apache/commons/text/matcher/AbstractStringMatcher.java +++ b/src/main/java/org/apache/commons/text/matcher/AbstractStringMatcher.java @@ -20,11 +20,7 @@ package org.apache.commons.text.matcher; import java.util.Arrays; /** - * A matcher class that can be queried to determine if a character array portion matches. - * <p> - * This class comes complete with various factory methods. If these do not suffice, you can subclass and implement your - * own matcher. - * </p> + * A matcher that determines if a character array portion matches. * * @since 1.3 */ @@ -206,7 +202,7 @@ abstract class AbstractStringMatcher implements StringMatcher { /** The string to match, as a character array, implementation treats as immutable. */ private final char[] chars; - /** The string to match */ + /** The string to match. */ private final String string; /**