| Summary: | unable to navigate to static itd | ||
|---|---|---|---|
| Product: | [Tools] AJDT | Reporter: | Andrew Clement <aclement> |
| Component: | UI | Assignee: | AJDT-inbox <AJDT-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | andrew.eisenberg |
| Version: | DEVELOPMENT | ||
| Target Milestone: | 2.1.3 | ||
| Hardware: | PC | ||
| OS: | Mac OS X - Carbon (unsup.) | ||
| Whiteboard: | |||
Appears to be fixed in latest dev build. Fixed along with the fix for Bug 361876. *** This bug has been marked as a duplicate of bug 361876 *** |
The aspect: import java.util.Collection; public aspect EnrolerHelperAspect { public static void Enroler.collectAllRoles(Collection roles) { } } The target: import java.util.ArrayList; import java.util.Collection; public class Enroler { public static Collection<? extends Role> getAllRoles() { Collection result = new ArrayList<Role>(2); collectAllRoles(result); return result; } } I can't select the 'collectAllRoles' call in the class and navigate back to the ITD in the aspect.