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

commit e516513f58893634977041e5e2ec52072fb87fe3
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Apr 23 09:39:19 2024 -0400

    Whitespace
---
 src/main/java/org/apache/commons/text/StrMatcher.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/main/java/org/apache/commons/text/StrMatcher.java 
b/src/main/java/org/apache/commons/text/StrMatcher.java
index 228b0aa4..1e53ee62 100644
--- a/src/main/java/org/apache/commons/text/StrMatcher.java
+++ b/src/main/java/org/apache/commons/text/StrMatcher.java
@@ -39,6 +39,7 @@ public abstract class StrMatcher {
      * Class used to define a character for matching purposes.
      */
     static final class CharMatcher extends StrMatcher {
+
         /** The character to match. */
         private final char ch;
 
@@ -70,6 +71,7 @@ public abstract class StrMatcher {
      * Class used to define a set of characters for matching purposes.
      */
     static final class CharSetMatcher extends StrMatcher {
+
         /** The set of characters to match. */
         private final char[] chars;
 
@@ -128,6 +130,7 @@ public abstract class StrMatcher {
      * Class used to define a set of characters for matching purposes.
      */
     static final class StringMatcher extends StrMatcher {
+
         /** The string to match, as a character array. */
         private final char[] chars;
 

Reply via email to