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 f9ff638  Format tweaks.
f9ff638 is described below

commit f9ff63850e2b75079d830df44a11e67f9ef3b616
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Dec 11 12:24:07 2019 -0500

    Format tweaks.
---
 .../java/org/apache/commons/text/matcher/AbstractStringMatcher.java    | 3 +++
 1 file changed, 3 insertions(+)

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 f80e18c..627cf91 100644
--- a/src/main/java/org/apache/commons/text/matcher/AbstractStringMatcher.java
+++ b/src/main/java/org/apache/commons/text/matcher/AbstractStringMatcher.java
@@ -33,6 +33,7 @@ abstract class AbstractStringMatcher implements StringMatcher 
{
      * Class used to define a character for matching purposes.
      */
     static final class CharMatcher extends AbstractStringMatcher {
+        
         /** The character to match. */
         private final char ch;
 
@@ -70,6 +71,7 @@ abstract class AbstractStringMatcher implements StringMatcher 
{
      * Class used to define a set of characters for matching purposes.
      */
     static final class CharSetMatcher extends AbstractStringMatcher {
+        
         /** The set of characters to match. */
         private final char[] chars;
 
@@ -139,6 +141,7 @@ abstract class AbstractStringMatcher implements 
StringMatcher {
      * Class used to define a set of characters for matching purposes.
      */
     static final class StringMatcher extends AbstractStringMatcher {
+        
         /** The string to match, as a character array. */
         private final char[] chars;
 

Reply via email to