-
Bug
-
Resolution: Done
-
Major
-
5.2.0.M2
-
None
-
None
I have a rule:
package org.jboss.qa.drools.bugfixes
rule "hello world"
@output("\"Hello world!\"")
when
then
System.out.println("Hello world!");
end
And a piece of code:
System.out.println(getKnowledgeBase().getRule("org.jboss.qa.drools.bugfixes", "hello world").getMetaData().get("output"));
and the result is:
""Hello world!""
while I expect same result as in 5.1:
"Hello world!"