]
Daniel José dos Santos updated DROOLS-4968:
-------------------------------------------
Tester: Jozef Marko (was: Anna Dupliak)
Guided Rule Editor removes matches statement from rule
------------------------------------------------------
Key: DROOLS-4968
URL:
https://issues.redhat.com/browse/DROOLS-4968
Project: Drools
Issue Type: Bug
Components: Guided Decision Table Editor
Affects Versions: 7.31.0.Final
Reporter: Daniel José dos Santos
Assignee: Daniel José dos Santos
Priority: Major
Labels: drools-tools, support
A rdrl file containing the following constraint is changed after being opened with the
Guided Rule Editor in business central:
* before:
{code}
FactA(type == "A", (symbol != null && matches "P.*") ||
(symbol != null && matches "p.*") )
{code}
* after:
{code}
FactA(type == "A", (symbol != null && ) || (symbol != null && )
)
{code}