Community
Participate
Working Groups
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.
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 ***