Make methods look for the same method that has the same signature rather than owner.
This commit is contained in:
parent
a9cbd661ca
commit
82789aa38e
|
@ -127,7 +127,7 @@ public class GoToAction extends AbstractAction
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
methods.stream().filter(classMethodLocation -> classMethodLocation.owner.equals(method.owner)).forEach(classMethodLocation ->
|
methods.stream().filter(classMethodLocation -> classMethodLocation.signature.equals(method.signature)).forEach(classMethodLocation ->
|
||||||
{
|
{
|
||||||
if (classMethodLocation.decRef.equalsIgnoreCase("declaration"))
|
if (classMethodLocation.decRef.equalsIgnoreCase("declaration"))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user