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 a0f57eb  Checkstyle: Remove trailing white spaces on all lines.
a0f57eb is described below

commit a0f57eb7849372017e44f0c05018ec3747403239
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Dec 11 17:13:59 2019 -0500

    Checkstyle: Remove trailing white spaces on all lines.
---
 .../java/org/apache/commons/text/matcher/AbstractStringMatcher.java | 6 +++---
 1 file changed, 3 insertions(+), 3 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 627cf91..abe6d65 100644
--- a/src/main/java/org/apache/commons/text/matcher/AbstractStringMatcher.java
+++ b/src/main/java/org/apache/commons/text/matcher/AbstractStringMatcher.java
@@ -33,7 +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;
 
@@ -71,7 +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;
 
@@ -141,7 +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