-
Bug
-
Resolution: Done
-
Major
-
6.0.1
-
None
Description of problem:
The classes:
org.jbpm.compiler.xml.processes.ValueHandler
org.jbpm.bpmn2.xml.DocumentationHandler
contain line:
text.trim();
which is basically useless because it's called on a string which is a immutable object. The value is not used anywhere.
Please remove the line if it's not required or assign the value returned from the statement.