[jboss-svn-commits] JBL Code SVN: r20275 - labs/jbossrules/branches/parser-rewrite/drools-compiler/src/test/resources/org/drools/integrationtests.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Tue Jun 3 17:40:04 EDT 2008
Author: porcelli
Date: 2008-06-03 17:40:03 -0400 (Tue, 03 Jun 2008)
New Revision: 20275
Modified:
labs/jbossrules/branches/parser-rewrite/drools-compiler/src/test/resources/org/drools/integrationtests/test_CEP_TimeRelationalOperators.drl
Log:
unnecessary character "~" removed
Modified: labs/jbossrules/branches/parser-rewrite/drools-compiler/src/test/resources/org/drools/integrationtests/test_CEP_TimeRelationalOperators.drl
===================================================================
--- labs/jbossrules/branches/parser-rewrite/drools-compiler/src/test/resources/org/drools/integrationtests/test_CEP_TimeRelationalOperators.drl 2008-06-03 18:06:15 UTC (rev 20274)
+++ labs/jbossrules/branches/parser-rewrite/drools-compiler/src/test/resources/org/drools/integrationtests/test_CEP_TimeRelationalOperators.drl 2008-06-03 21:40:03 UTC (rev 20275)
@@ -24,7 +24,7 @@
rule "coincides operator"
when
$a : StockTick( company == "DROO" )
- $b : StockTick( company == "ACME", this ~coincides $a )
+ $b : StockTick( company == "ACME", this coincides $a )
then
results_coincides.add( $b );
end
@@ -32,7 +32,7 @@
rule "before operator"
when
$a : StockTick( company == "DROO" )
- $b : StockTick( company == "ACME", this ~before[5,8] $a )
+ $b : StockTick( company == "ACME", this before[5,8] $a )
then
results_before.add( $b );
end
@@ -40,7 +40,7 @@
rule "after operator"
when
$a : StockTick( company == "DROO" )
- $b : StockTick( company == "ACME", this ~after[5,8] $a )
+ $b : StockTick( company == "ACME", this after[5,8] $a )
then
results_after.add( $b );
end
@@ -48,7 +48,7 @@
rule "meets operator"
when
$a : StockTick( company == "DROO" )
- $b : StockTick( company == "ACME", this ~meets[1] $a )
+ $b : StockTick( company == "ACME", this meets[1] $a )
then
results_meets.add( $b );
end
@@ -56,7 +56,7 @@
rule "met-by operator"
when
$a : StockTick( company == "DROO" )
- $b : StockTick( company == "ACME", this ~metby[1] $a )
+ $b : StockTick( company == "ACME", this metby[1] $a )
then
results_met_by.add( $b );
end
@@ -65,7 +65,7 @@
rule "overlaps operator"
when
$a : StockTick( company == "ACME" )
- $b : StockTick( company == "DROO", this ~overlaps[1] $a )
+ $b : StockTick( company == "DROO", this overlaps[1] $a )
then
results_overlaps.add( $b );
end
@@ -73,7 +73,7 @@
rule "overlapped-by operator"
when
$a : StockTick( company == "DROO" )
- $b : StockTick( company == "ACME", this ~overlappedby[1] $a )
+ $b : StockTick( company == "ACME", this overlappedby[1] $a )
then
results_overlapped_by.add( $b );
end
@@ -81,7 +81,7 @@
rule "during operator"
when
$a : StockTick( company == "DROO" )
- $b : StockTick( company == "ACME", this ~during[1] $a )
+ $b : StockTick( company == "ACME", this during[1] $a )
then
results_during.add( $b );
end
@@ -89,7 +89,7 @@
rule "includes operator"
when
$a : StockTick( company == "ACME" )
- $b : StockTick( company == "DROO", this ~includes[1] $a )
+ $b : StockTick( company == "DROO", this includes[1] $a )
then
results_includes.add( $b );
end
@@ -97,7 +97,7 @@
rule "starts operator"
when
$a : StockTick( company == "ACME" )
- $b : StockTick( company == "ACME", this ~starts[2] $a )
+ $b : StockTick( company == "ACME", this starts[2] $a )
then
results_starts.add( $b );
end
@@ -105,7 +105,7 @@
rule "started-by operator"
when
$a : StockTick( company == "ACME" )
- $b : StockTick( company == "ACME", this ~startedby[2] $a )
+ $b : StockTick( company == "ACME", this startedby[2] $a )
then
results_started_by.add( $b );
end
@@ -113,7 +113,7 @@
rule "finishes operator"
when
$a : StockTick( company == "ACME" )
- $b : StockTick( company == "ACME", this ~finishes[2] $a )
+ $b : StockTick( company == "ACME", this finishes[2] $a )
then
results_finishes.add( $b );
end
@@ -121,7 +121,7 @@
rule "finished-by operator"
when
$a : StockTick( company == "ACME" )
- $b : StockTick( company == "ACME", this ~finishedby[2] $a )
+ $b : StockTick( company == "ACME", this finishedby[2] $a )
then
results_finished_by.add( $b );
end
\ No newline at end of file
More information about the jboss-svn-commits
mailing list