Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Duplicate
-
Affects Version/s: None
-
Fix Version/s: 2.6.0.Release
-
Component/s: Editor
-
Labels:None
-
Number of attachments :
Description
In Parent.groovy:
class Parent {
static p() {}
}
In Child.groovy:
class Child extends Parent {
def c() {
p()
}
}
Control-clicking (or pressing F3) on p in Child.groovy will select Child and not navigate to Parent.p
Duplicate of
GRECLIPSE-1244