Patrik Dufresne created JBRULES-3351:
----------------------------------------
Summary: Settings a termination config list will not create the Termination
instance
Key: JBRULES-3351
URL:
https://issues.jboss.org/browse/JBRULES-3351
Project: Drools
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: drools-planner
Affects Versions: 5.3.1.Final
Environment: N/A
Reporter: Patrik Dufresne
Assignee: Geoffrey De Smet
Setting a sub termination config list using
TerminationConfig.setTerminationConfigList(List<TerminationConfig>) will not create
the termination when buildTermination is called. The problem is due to an error in
TerminationConfig.java:179.
if (terminationConfigList != null && terminationConfigList.isEmpty()) {
for (TerminationConfig terminationConfig : terminationConfigList) {
Termination termination =
terminationConfig.buildTermination(scoreDefinition);
if (termination != null) {
terminationList.add(termination);
}
}
}
The boolean expression terminationConfigList.isEmpty() should become
!terminationConfigList.isEmpty().
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira