[
https://issues.jboss.org/browse/DROOLS-4140?page=com.atlassian.jira.plugi...
]
Peter Martinovič updated DROOLS-4140:
-------------------------------------
Description:
If global's method name starts with modify, the first character of the method name is
lost during code generation.
Compilation then fails.
{code:java}
org.drools.model.Rule rule = D.rule("Rule 1").build(D.on(var_g).execute((g)
-> {
g.odifyIsTheFirstWordInTheMethodName();
}));
{code}
(It does not seem to happen with method names starting with keywords insert, delete.)
was:
If global's method name starts with modify, the first character of the method name is
lost during code generation.
Compilation then fails.
{code:java}
org.drools.model.Rule rule = D.rule("Rule 1").build(D.on(var_g).execute((g)
-> {
g.odifyIsTheFirstWordInTheMethodName();
}));
{code}
Global's method names starting with word modify are truncated
-------------------------------------------------------------
Key: DROOLS-4140
URL:
https://issues.jboss.org/browse/DROOLS-4140
Project: Drools
Issue Type: Bug
Components: executable model
Affects Versions: 7.21.0.Final
Environment: FLOW_DSL, PATTERN_DSL
Reporter: Peter Martinovič
Assignee: Luca Molteni
Priority: Major
Attachments: DROOLS-4140-test.patch
If global's method name starts with modify, the first character of the method name is
lost during code generation.
Compilation then fails.
{code:java}
org.drools.model.Rule rule = D.rule("Rule 1").build(D.on(var_g).execute((g)
-> {
g.odifyIsTheFirstWordInTheMethodName();
}));
{code}
(It does not seem to happen with method names starting with keywords insert, delete.)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)