[jboss-svn-commits] JBL Code SVN: r20050 - labs/jbossrules/branches/parser-rewrite/drools-compiler/src/test/resources/org/drools/lang.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Mon May 19 13:45:31 EDT 2008
Author: porcelli
Date: 2008-05-19 13:45:31 -0400 (Mon, 19 May 2008)
New Revision: 20050
Modified:
labs/jbossrules/branches/parser-rewrite/drools-compiler/src/test/resources/org/drools/lang/pluggable_operators.drl
Log:
Removed unnecessary operator.
Modified: labs/jbossrules/branches/parser-rewrite/drools-compiler/src/test/resources/org/drools/lang/pluggable_operators.drl
===================================================================
--- labs/jbossrules/branches/parser-rewrite/drools-compiler/src/test/resources/org/drools/lang/pluggable_operators.drl 2008-05-19 17:44:50 UTC (rev 20049)
+++ labs/jbossrules/branches/parser-rewrite/drools-compiler/src/test/resources/org/drools/lang/pluggable_operators.drl 2008-05-19 17:45:31 UTC (rev 20050)
@@ -3,9 +3,9 @@
rule "test pluggable operators"
when
$a : EventA()
- $b : EventB( this ~after[1,10] $a )
- $c : EventC( this ~finishes $b )
- $d : EventD( this not ~starts $a )
- $e : EventE( this not ~before [1, 10] $b )
+ $b : EventB( this after[1,10] $a )
+ $c : EventC( this finishes $b )
+ $d : EventD( this not starts $a )
+ $e : EventE( this not before [1, 10] $b )
then
end
\ No newline at end of file
More information about the jboss-svn-commits
mailing list