Use of reserved word as bound variable in a pattern results as NPE
------------------------------------------------------------------
Key: JBRULES-1287
URL:
http://jira.jboss.com/jira/browse/JBRULES-1287
Project: JBoss Drools
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Drl Parser/Builder, Eclipse IDE
Affects Versions: 4.0.2
Environment: Eclipse 3.2, Windows XP
Reporter: Justin Wick
Assigned To: Mark Proctor
example:
rule "This generates an NPE"
when
result : ReservedWordNPEFact(data < 15)
then
result.setData(new Integer(1));
end
At least in the eclipse IDE, this generates an NPE. Change result to something like:
rule "This generates an NPE"
when
f: ReservedWordNPEFact(data < 15)
then
f.setData(new Integer(1));
end
and it goes away.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira