]
George Gastaldi closed ROASTER-59.
----------------------------------
Fix Version/s: 2.17.0.Final
(was: 2.x Future)
Assignee: George Gastaldi
Resolution: Done
Multi-line javadoc not treated correct
--------------------------------------
Key: ROASTER-59
URL:
https://issues.jboss.org/browse/ROASTER-59
Project: Roaster
Issue Type: Bug
Components: JDT
Affects Versions: 2.11.1.Final
Reporter: Michael Schwartz
Assignee: George Gastaldi
Priority: Trivial
Fix For: 2.17.0.Final
This code:
public static void copyJavaDoc(JavaDocSource<?> source, JavaDocSource<?>
destination) {
destination.setFullText(source.getFullText());
}
produces for that source:
/**
* The country where this currency is used mostly. This field is just for
* informational purposes and have no effect on any processing.
*/
the following javadoc:
/**
* The country where this currency is used mostly. This field is just forinformational
purposes and have no effect on any processing.
*/
The crlf of the source javadoc is stripped out leading to concatinated words.