| Summary: | [introduce parameter] does not leave existing Javadoc intact | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Tobias Widmer <tobias_widmer> |
| Component: | UI | Assignee: | Markus Keller <markus.kell.r> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P4 | ||
| Version: | 3.1 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | All | ||
| Whiteboard: | stalebug | ||
Released a workaround for the common case that the first parameter in not moved. Full fix has to wait until after 3.1. This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. -- The automated Eclipse Genie. |
I20050419-1200 /** * Execute foo * * @param n the param * @return the result * @throws Exception */ public foo() { int exp= some_expression; } After converting the expression to a parameter, the comment looks as follows: /** * Execute foo * @param n the param * @param exp the expression * * @return the result * @throws Exception */ The first blank line should be left and no line be inserted before the @return tag.