Michael Schwartz created FORGE-2208:
---------------------------------------
Summary: Multi-line javadoc not treated correct
Key: FORGE-2208
URL:
https://issues.jboss.org/browse/FORGE-2208
Project: Forge
Issue Type: Bug
Components: Addon Development
Affects Versions: 2.13.0.Final
Reporter: Michael Schwartz
Priority: Trivial
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.
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)