You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by se...@apache.org on 2017/03/31 06:16:38 UTC

svn commit: r1789617 - /ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/ae/RegexSectionizer.java

Author: seanfinan
Date: Fri Mar 31 06:16:38 2017
New Revision: 1789617

URL: http://svn.apache.org/viewvc?rev=1789617&view=rev
Log:
Fixed parameter description

Modified:
    ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/ae/RegexSectionizer.java

Modified: ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/ae/RegexSectionizer.java
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/ae/RegexSectionizer.java?rev=1789617&r1=1789616&r2=1789617&view=diff
==============================================================================
--- ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/ae/RegexSectionizer.java (original)
+++ ctakes/trunk/ctakes-core/src/main/java/org/apache/ctakes/core/ae/RegexSectionizer.java Fri Mar 31 06:16:38 2017
@@ -35,15 +35,10 @@ abstract public class RegexSectionizer e
 
    static private final Logger LOGGER = Logger.getLogger( "RegexSectionizer" );
 
-   /**
-    * Name of configuration parameter that contains the character encoding used
-    * by the input files.  If not specified, the default system encoding will
-    * be used.
-    */
    static public final String PARAM_TAG_DIVIDERS = "TagDividers";
    @ConfigurationParameter(
          name = PARAM_TAG_DIVIDERS,
-         description = "The character encoding used by the input files.",
+         description = "True if lines of divider characters ____ , ---- , === should divide sections",
          defaultValue = "true",
          mandatory = false
    )