You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/02/12 15:59:20 UTC

[text] Javadoc fixes.

Repository: commons-text
Updated Branches:
  refs/heads/master 40b15c9a2 -> 29fe2d49a


Javadoc fixes.

Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/29fe2d49
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/29fe2d49
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/29fe2d49

Branch: refs/heads/master
Commit: 29fe2d49ad98f978eef7e31ca1d26eaa72aea528
Parents: 40b15c9
Author: Gary Gregory <ga...@gmail.com>
Authored: Mon Feb 12 08:59:18 2018 -0700
Committer: Gary Gregory <ga...@gmail.com>
Committed: Mon Feb 12 08:59:18 2018 -0700

----------------------------------------------------------------------
 .../org/apache/commons/text/StrMatcher.java     | 24 ++++++++++----------
 1 file changed, 12 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/29fe2d49/src/main/java/org/apache/commons/text/StrMatcher.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/StrMatcher.java b/src/main/java/org/apache/commons/text/StrMatcher.java
index 9af8dff..de7df11 100644
--- a/src/main/java/org/apache/commons/text/StrMatcher.java
+++ b/src/main/java/org/apache/commons/text/StrMatcher.java
@@ -33,43 +33,43 @@ public abstract class StrMatcher {
      * Matches the comma character.
      */
     private static final StrMatcher COMMA_MATCHER = new CharMatcher(',');
-    
+
     /**
      * Matches the tab character.
      */
     private static final StrMatcher TAB_MATCHER = new CharMatcher('\t');
-    
+
     /**
      * Matches the space character.
      */
     private static final StrMatcher SPACE_MATCHER = new CharMatcher(' ');
-    
+
     /**
      * Matches the same characters as StringTokenizer,
      * namely space, tab, newline, formfeed.
      */
     private static final StrMatcher SPLIT_MATCHER = new CharSetMatcher(" \t\n\r\f".toCharArray());
-    
+
     /**
      * Matches the String trim() whitespace characters.
      */
     private static final StrMatcher TRIM_MATCHER = new TrimMatcher();
-    
+
     /**
      * Matches the double quote character.
      */
     private static final StrMatcher SINGLE_QUOTE_MATCHER = new CharMatcher('\'');
-    
+
     /**
      * Matches the double quote character.
      */
     private static final StrMatcher DOUBLE_QUOTE_MATCHER = new CharMatcher('"');
-    
+
     /**
      * Matches the single or double quote character.
      */
     private static final StrMatcher QUOTE_MATCHER = new CharSetMatcher("'\"".toCharArray());
-    
+
     /**
      * Matches no characters.
      */
@@ -160,7 +160,7 @@ public abstract class StrMatcher {
     }
 
     /**
-     * Constructor that creates a matcher from a character.
+     * Creates a matcher from a character.
      *
      * @param ch  the character to match, must not be null
      * @return a new Matcher for the given char
@@ -170,7 +170,7 @@ public abstract class StrMatcher {
     }
 
     /**
-     * Constructor that creates a matcher from a set of characters.
+     * Creates a matcher from a set of characters.
      *
      * @param chars  the characters to match, null or empty matches nothing
      * @return a new matcher for the given char[]
@@ -186,7 +186,7 @@ public abstract class StrMatcher {
     }
 
     /**
-     * Constructor that creates a matcher from a string representing a set of characters.
+     * Creates a matcher from a string representing a set of characters.
      *
      * @param chars  the characters to match, null or empty matches nothing
      * @return a new Matcher for the given characters
@@ -202,7 +202,7 @@ public abstract class StrMatcher {
     }
 
     /**
-     * Constructor that creates a matcher from a string.
+     * Creates a matcher from a string.
      *
      * @param str  the string to match, null or empty matches nothing
      * @return a new Matcher for the given String