eclipse-ee4j / eclipse-ee4j/jaxb-ri
remove blank in generated getter javadoc
- Dominant language
- Java
- Stars
- 222
- Forks
- 131
- Avg merge
- 2d 17h
- Merged PRs (30d)
- 9
Description
Jaxb produces this kind of javadoc:
/**
* Gets the value of the myCollection property.
* [snip]
*
* Objects of the following type(s) are allowed in the list
* {@code <}{@link Class1 }{@code >}
* {@code <}{@link Class2 }{@code >}
*
*/
but if there is a blank between the class and the closed curly bracket
like seen here: {@code <}{@link Class1 }{@code >}
the eclipse-on-mouse-javadoc-hover-tooltip-text like (eclipse 3.4+):
"Objects of the following type(s) are allowed in the list <_ >, <_ >"
or only (eclipse 3.3)
"Objects of the following type(s) are allowed in the list".
If if you remove the bank, e.g.:
{@code <} {@link Class1} {@code >}
you should obtain a more readable mouseover javadoc:
"Objects of the following type(s) are allowed in the list , "
#### Environment
Operating System: All
Platform: All
#### Affected Versions
[2.2]
Contributor guide
Assessment
This issue has not been assessed yet.