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-io.git
The following commit(s) were added to refs/heads/master by this push: new 99003e7 Javadoc nits. 99003e7 is described below commit 99003e7ff307c8a43b49e9097a5d77ec27ffb9d0 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sat Sep 25 20:52:00 2021 -0400 Javadoc nits. --- .../apache/commons/io/filefilter/WildcardFileFilter.java | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java b/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java index 6ad91d8..b88728d 100644 --- a/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java +++ b/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java @@ -85,7 +85,7 @@ public class WildcardFileFilter extends AbstractFileFilter implements Serializab private final IOCase ioCase; /** - * Construct a new case-sensitive wildcard filter for a list of wildcards. + * Constructs a new case-sensitive wildcard filter for a list of wildcards. * * @param wildcards the list of wildcards to match, not null * @throws IllegalArgumentException if the pattern list is null @@ -96,7 +96,7 @@ public class WildcardFileFilter extends AbstractFileFilter implements Serializab } /** - * Construct a new wildcard filter for a list of wildcards specifying case-sensitivity. + * Constructs a new wildcard filter for a list of wildcards specifying case-sensitivity. * * @param wildcards the list of wildcards to match, not null * @param ioCase how to handle case sensitivity, null means case-sensitive @@ -110,7 +110,7 @@ public class WildcardFileFilter extends AbstractFileFilter implements Serializab } /** - * Construct a new case-sensitive wildcard filter for a single wildcard. + * Constructs a new case-sensitive wildcard filter for a single wildcard. * * @param wildcard the wildcard to match * @throws IllegalArgumentException if the pattern is null @@ -120,8 +120,7 @@ public class WildcardFileFilter extends AbstractFileFilter implements Serializab } /** - * Construct a new case-sensitive wildcard filter for an array of wildcards. - * <p> + * Constructs a new case-sensitive wildcard filter for an array of wildcards. * * @param wildcards the array of wildcards to match * @throws IllegalArgumentException if the pattern array is null @@ -131,7 +130,7 @@ public class WildcardFileFilter extends AbstractFileFilter implements Serializab } /** - * Construct a new wildcard filter for a single wildcard specifying case-sensitivity. + * Constructs a new wildcard filter for a single wildcard specifying case-sensitivity. * * @param wildcard the wildcard to match, not null * @param ioCase how to handle case sensitivity, null means case-sensitive @@ -144,7 +143,7 @@ public class WildcardFileFilter extends AbstractFileFilter implements Serializab } /** - * Construct a new wildcard filter for an array of wildcards specifying case-sensitivity. + * Constructs a new wildcard filter for an array of wildcards specifying case-sensitivity. * * @param wildcards the array of wildcards to match, not null * @param ioCase how to handle case sensitivity, null means case-sensitive