You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by pk...@apache.org on 2013/08/06 18:26:38 UTC

svn commit: r1511020 - /uima/sandbox/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/RutaRuleElement.java

Author: pkluegl
Date: Tue Aug  6 16:26:37 2013
New Revision: 1511020

URL: http://svn.apache.org/r1511020
Log:
no jira - do not fail match if you actually matched

Modified:
    uima/sandbox/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/RutaRuleElement.java

Modified: uima/sandbox/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/RutaRuleElement.java
URL: http://svn.apache.org/viewvc/uima/sandbox/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/RutaRuleElement.java?rev=1511020&r1=1511019&r2=1511020&view=diff
==============================================================================
--- uima/sandbox/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/RutaRuleElement.java (original)
+++ uima/sandbox/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/RutaRuleElement.java Tue Aug  6 16:26:37 2013
@@ -270,7 +270,7 @@ result.addAll(fallbackContinue);
               stream, crowd);
       ruleMatch.setMatched(evaluateMatches != null);
       if (ruleMatch.matched()) {
-        result = continueMatchSomewhereElse(after, true, annotation, ruleMatch, ruleApply,
+        result = continueMatchSomewhereElse(after, false, annotation, ruleMatch, ruleApply,
                 containerMatch, sideStepOrigin, null, stream, crowd);
       } else {
         doneMatching(ruleMatch, ruleApply, stream, crowd);