| Summary: | [assist] Completion in JavaDocs broken if @deprecated is used | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Sebastian Zarnekow <sebastian.zarnekow> |
| Component: | Core | Assignee: | JDT-Core-Inbox <jdt-core-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | amj87.iitr, daniel_megert, markus.kell.r |
| Version: | 3.7 | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
Can reproduce using Juno M2. Broken in Indigo and Helios as well. Will investigate. I once had something similar (bug 249785). Maybe this fix is also a one-liner? *** This bug has been marked as a duplicate of bug 429340 *** |
Sample class: public class A { /** * Obj| * @deprecated */ public void a() {} } where | indicates the cursor position. I expect completion proposals like {@link Object} but get an empty list. Completion works fine if @deprecated for the following cases: public class A { /** * Obj| */ public void a() {} } public class A { /** * @deprecated Obj| */ public void a() {} }