Hi team,
I have noticed an issue on my project. I have a java class MyClassA which both extends class MyClassB and implements interface MyInterfaceI. In that case, goto symbol function (Ctrl + R) does not show any of my functions (does not matter is the function is public, private or protected) but only the ones inside “new object” of my function :
public class MyClassA
extends MyClassB
implements MyInterfaceI
{
public void _MyMethod() {
new Thread(new Runnable() {
public void run() {
}
}).start();
}
}
In this example, run method is found by Ctrl + R but not _MyMethod.
If i remove the implements keyword in my class, it’s now working. Magic!
Is this problem already known?
Thanks!