You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2019/03/07 23:16:00 UTC

[jira] [Work logged] (TEXT-156) Fix the RegexTokenizer to use a static Pattern

     [ https://issues.apache.org/jira/browse/TEXT-156?focusedWorklogId=209828&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-209828 ]

ASF GitHub Bot logged work on TEXT-156:
---------------------------------------

                Author: ASF GitHub Bot
            Created on: 07/Mar/19 23:15
            Start Date: 07/Mar/19 23:15
    Worklog Time Spent: 10m 
      Work Description: aherbert commented on pull request #110: TEXT-156: Fix the RegexTokenizer to use a static Pattern.
URL: https://github.com/apache/commons-text/pull/110
 
 
   Use of a static pattern avoids the compile step on each invocation.
   
   Remove the use of CharSequence.toString() to pass to the
   matcher(CharSequence) method. The String conversion is not needed.
   
   Fix the javadoc header @code tag.
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

            Worklog Id:     (was: 209828)
            Time Spent: 10m
    Remaining Estimate: 0h

> Fix the RegexTokenizer to use a static Pattern
> ----------------------------------------------
>
>                 Key: TEXT-156
>                 URL: https://issues.apache.org/jira/browse/TEXT-156
>             Project: Commons Text
>          Issue Type: Improvement
>    Affects Versions: 1.6
>            Reporter: Alex D Herbert
>            Priority: Trivial
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Use of a static pattern avoids the compile step for each invocation. The matcher created from the pattern contains all state so the pattern can be used across threads.
> Also:
>  * Remove the use of CharSequence.toString() to pass to the
> matcher(CharSequence) method. There is no need to create a String.
>  * Fix the javadoc header @code tag.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)