Revision: 18929
          http://sourceforge.net/p/gate/code/18929
Author:   ian_roberts
Date:     2015-09-30 17:32:40 +0000 (Wed, 30 Sep 2015)
Log Message:
-----------
That should have been greater than, not less

Modified Paths:
--------------
    gate/trunk/plugins/Lang_French/tokeniser/postprocess.jape

Modified: gate/trunk/plugins/Lang_French/tokeniser/postprocess.jape
===================================================================
--- gate/trunk/plugins/Lang_French/tokeniser/postprocess.jape   2015-09-30 
17:32:02 UTC (rev 18928)
+++ gate/trunk/plugins/Lang_French/tokeniser/postprocess.jape   2015-09-30 
17:32:40 UTC (rev 18929)
@@ -78,7 +78,7 @@
      /* offset += dashIndex; */ // <-- REMOVE THIS LINE
      startIndex = dashIndex + 1;
     }
-    if(content.length() < startIndex) {
+    if(content.length() > startIndex) {
       // there is trailing content, make an extra token
       features = Factory.newFeatureMap();
       features.putAll(annotation.getFeatures());

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to