Can you log a jira for this.
Thanks
Mark
s erel wrote:
Hello,
When using the following two rules with an empty working memory both
rules
get fired:
===================================
rule rule1
when
not Person(gender == Consts.Unknown)
then
System.out.println("rule1");
end
rule rule2
when
exists Person(gender == Consts.Unknown)
then
System.out.println("rule2");
end
===================================