| Summary: | [assist][javadoc] @link proposals should not prefer instance methods | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Andreas Sewe <sewe> | ||||
| Component: | UI | Assignee: | JDT-UI-Inbox <jdt-ui-inbox> | ||||
| Status: | CLOSED WONTFIX | QA Contact: | |||||
| Severity: | minor | ||||||
| Priority: | P3 | ||||||
| Version: | 4.8 | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | All | ||||||
| OS: | All | ||||||
| Whiteboard: | stalebug | ||||||
| Attachments: |
|
||||||
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. As such, we're closing this bug. If you have further information on the current state of the bug, please add it and reopen this bug. 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. |
Created attachment 272145 [details] Screenshot illustrating the problem The attached screenshot (taken under Photon M4) illustrates the problem: instance methods are preferred over static methods during method completion. While sensible in Java code, in a Javadoc @link tag like the following, this sorting strategy makes little sense: /** * {@link java.util.Collections#<ctrl+space> */ The static method Collections.addAll(...) is arguably more important than the non-static Object.wait(...) method, as the former is defined on the type explicitly referenced in the @link tag: Collections.